I need to get rid of the GNOME Desktop Environment which has been installed by default when I updated my pc from 15.10 to 16.04.
After a while, I found myself not only with GNOME DE, but also with Cinnamon alongside (in the login screen, I could choose at least five or six DE!)
Now I am using Unity, and I'm happy with that, and I successfully uninstalled Cinnamon, but now I'm afraid that after uninstalling GNOME I will mess up the Unity DE, since I see many packages running in unity with the packagename starting with gnome-... Would someone mind to help me? Thx in advance
4 Answers
To be honest it would be better to back up for files and all config files in the Home folder and do a fresh install of Ubunutu.
If not try this:
Start by running this command:
Uninstall just ubuntu-gnome-desktop
sudo apt-get remove ubuntu-gnome-desktop
sudo apt-get remove gnome-shell This will remove just the ubuntu-gnome-desktop package itself.
Uninstall ubuntu-gnome-desktop and it's dependencies
sudo apt-get remove --auto-remove ubuntu-gnome-desktopThis will remove the ubuntu-gnome-desktop package and any other dependant packages which are no longer needed.
Purging your config/data too
If you also want to delete your local/config files for ubuntu-gnome-desktop then this will work.
Caution! Purged config/data can not be restored by reinstalling the package.
sudo apt-get purge ubuntu-gnome-desktopOr similarly, like this ubuntu-gnome-desktop
sudo apt-get purge --auto-remove ubuntu-gnome-desktopThen run:
sudo apt-get autoremove to remove extra packages and dependencies no longer needed on your system.
You might (or might not, depending on if gdm was removed already) need to use these commands to change your login screen back to Unity's default (which is lightDM) run
sudo dpkg-reconfigure gdmHit enter at the prompt and then select lightdm from the options. After that you can remove gdm with
sudo apt-get remove gdm Finally run:
sudo apt-get install ubuntu-desktop
sudo apt-get install unity 5 You can see all Gnome package list by :
apt list --installed | grep gnomethen remove your arbitary package by :
apt-get remove <package name>or remove all packages by:
sudo apt-get remove $(apt list --installed "gnome*" 2>/dev/null | awk -F'/' 'NR>1{print $1}') 1 I also like the user interface of Unity desktop environment, so try these beautiful steps...
Step 1 : This will remove all gnome related things.
sudo apt-get remove nautilus nautilus-* gnome-power-manager gnome-screensaver gnome-termina* gnome-pane* gnome-applet* gnome-bluetooth gnome-desktop* gnome-sessio* gnome-user* gnome-shell-common zeitgeist-core libzeitgeist* gnome-control-center gnome-screenshot gnome* && sudo apt-get autoremoveStep 2 : This will remove all snap applications, if you don't do this step then you will see that there are 2 same apps some app (like 2 system-monitors, 2 terminals, 2 calculators etc) after installing unity. so run bellow code without any worry.
sudo apt autoremove --purge snapdStep 3 : Now connect your system to a WI-FI to install Unity .
sudo apt install ubuntu-unity-desktopStep 4 : After successful installation, reboot your system. You may have a problem that tap to click not working after replacing Gnome with Unity. If so then run below code to solve that problem..
sudo apt install xserver-xorg-input-synapticsNow reboot your system and Login again.
Reboot your system and press Control-Alt-F1 to get to a text terminal. Log in there and type the following:
1sudo apt-get install ubuntu-desktop
sudo apt-get install --reinstall lightdm