How can I change my os from Xubuntu to Lubuntu. Should I download the iso file of lubuntu so i can install it? Because i find xubuntu laggy when streaming videos on celeron 900mhz
Asked
Active
Viewed 2,084 times
1
1 Answers
2
Uninstall xubuntu-desktop
:
sudo apt-get remove --purge --auto-remove xubuntu-desktop
Many more Xubuntu packages may need to be uninstalled, if they were set to manually installed, but my assumption above makes sense; or you may just not desire to remove them all.
Then install lubuntu-desktop
:
sudo apt-get install lubuntu-desktop
-
-
@Jan No. But it is preferable to do it while not logged into your lxde.
Ctrl
+F5
, log in, then run the commands. – ubuntroll Jun 11 '19 at 07:41 -
@Jan Sorry, I meant
Ctrl
+Alt
+F5
. And theF5
is just an example; any number works in the 2-6 range. Then, to turn back to the GUI, useCtrl
+Alt
+F1
. You may need to try some otherF
s. – ubuntroll Jun 11 '19 at 07:45 -
@Jan If you need me to add more info, I will, just don't forget to mark my answer as accepted if it helped. It will get my score closer to 50; 50 gives me commenting rights. – ubuntroll Jun 11 '19 at 08:12
-
why lubuntu show up in the lock screen (when choosing flavours) even i deleted in the command (sudo apt-get --purge remove lubuntu-desktop) – Jun 11 '19 at 08:42
-
@Jan You may need to use
--auto-remove
. Also, check ifsudo apt-get --purge --auto-remove lubuntu-base lubuntu-artwork
uninstalls some more stuff. – ubuntroll Jun 11 '19 at 10:14
lubuntu-desktop
to your system, and then select which you want to use for that session at login. If you find yourself always using lubuntu, you can later removexubuntu-desktop
(this is a variation of @ubuntroll's answer - ie. adding lubuntu first, then the removal later if happy with lubuntu). – guiverc Jun 11 '19 at 07:38sudo apt install lubuntu-desktop
will add it (apt
andapt-get
do the same thing in this case). The package adds the Lubuntu desktop to your system, including all programs; so you'll end up withleafpad
(lxde text editor) andmousepad
(xfce text editor), ie. multiple options that do the same thing. LXDE default apps will use less memory, so removingxubuntu-desktop
later maybe useful as 1gb isn't much dram. – guiverc Jun 11 '19 at 07:45