Ubuntu – How to remove gnome from a kubuntu 12.04 install

gnomekubuntu

I have a kubuntu 12.04 system to which I added gnome (unity) but I'm now wanting to remove gnome as I don't think I'll ever use it. doing apt-get remove ubuntu-desktop doesn't remove the packages, so how can I safely remove all the gnome components? I don't really want to do a clean install if I can avoid it.

Best Answer

I suggest , if you want to remove gnome, unity and ubuntu-desktop, try the following commands.

sudo apt-get remove --purge ubuntu-desktop

sudo apt-get remove --purge unity

sudo apt-get remove --purge gnome

I would also suggest you to run this last command just to be on the safe side, if any kde applications get removed, it will be installed back.

sudo apt-get install --reinstall kubuntu-desktop kubuntu-restricted-extras 
Related Question