I've got a VPS server, on which I surprisingly find packages like bluez
or thunderbird-gnome-support
or firefox
or libqt4
.
Do I have to list all the packages like in "How to delete all desktop environments except Unity?"?
I've got a VPS server, on which I surprisingly find packages like bluez
or thunderbird-gnome-support
or firefox
or libqt4
.
Do I have to list all the packages like in "How to delete all desktop environments except Unity?"?
To remove x11 and everything that uses it:
apt-get purge libx11.* libqt.*
apt-get purge libx11*
would a better proposal.
– Benoit
Jun 17 '14 at 09:19
You can use Tasksel It is a a tool that install/removes packages as per the type of system you require.
tasksel -t remove ubuntu-desktop
shows that it does not remove Firefox, xorg, etc.
– bain
Jun 17 '14 at 10:18
sudo tasksel remove ubuntu-desktop
. But if you do dpkg -l libx11-6
or dpkg -l firefox
afterwards you will see that those packages are still installed, so tasksel is not removing all of the desktop packages.
– bain
Jun 17 '14 at 10:37
sudo tasksel
then select from the available options Basic Ubuntu Server I unselected the Ubuntu Desktop then tab to ok. It removed all of my std desktop and only installed/left me with a server installation. I have not used the tasksel -t remove
before only the terminal gui. I think that you are left with xorg etc.. as removing the ubuntu destop and not selecting the server option does not remove the x-windows system leaving only server cli. x-windows system requires xorg and firefox can be run from the x-windows system.
– StallionSA
Jun 17 '14 at 10:40
ubuntu-desktop
, and doesn't relate to desktop-universal desktop-only packages likefirefox
. – Victor Sergienko Jun 17 '14 at 06:31