How can I complete remove gnome and all of its subprograms?

I have Kubuntu 12.04.

And I had installed gnome with sudo apt-get install gnome.

How can I complete remove this?

Looks like just put a sudo apt-get purge gnome will not solve the case. Because will remove just all gnome* packages and subprograms like brasero or seahorse would be still alive.

How can I complete remove gnome and all of its subprograms?

3 Answers

try

$ sudo apt-get remove gnome

or

$ sudo apt-get remove gnome*

you can always use the manual for more information

$ man apt-get

1

You can remove gnome packages by:

apt-get remove gnome-session gnome gnome-shell

Then apt-get can remove dependency that have been automatically installed and are not needed anymore with the autoremove command:

apt-get autoremove

This question was answered here: How to remove the Ubuntu Gnome desktop after making the switch to KDE?

Maybe it should be moved to

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like