I have a VPS that has Ubuntu 11.10 on it. Unfortunately, only the 11.10 Desktop (not server) image was available as an image to install your VPS with. How can I remove the packages included in the Desktop install, and, if needed, install the packages that only the server install has?
I've tried sudo apt-get remove ubuntu-desktop and then sudo apt-get autoremove. Unfortunately, that didn't work: it only removed 'libjudy-debian' (or something like that) which was installed from having 'miredo' installed at one point.
3 Answers
To remove x11 and everything that uses it, including all configuration:
apt-get purge libx11.* libqt.*Unlike the accepted answer (remove xserver-xorg-core) this one will also remove all desktop packages like Firefox etc.
5Right autoremove only removes packages that were installed automatically as part of other package installs. The things installed in the image are seeded and so all are basically considered "manual".
You'll probably get rid of most of them by getting rid of Xorg:
sudo apt-get remove xserver-xorg-coreAnd then do another autoremove.
There will likely be other things that are left around that you don't need.. but .. really.. why not just ask your VPS provider for a server image.. isn't it a little silly that they even offer the desktop image?
1sudo apt-get purge -y libx11.* libqt.* libgtk.
sudo apt-get autoremove -y 1