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

3

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?

GarouDan

Posted 2012-05-08T22:14:55.677

Reputation: 477

Answers

3

try

$ sudo apt-get remove gnome

or

$ sudo apt-get remove gnome*

you can always use the manual for more information

$ man apt-get

Maxwell S.

Posted 2012-05-08T22:14:55.677

Reputation: 734

sudo sudo works, very strange. I think remove ends this question. – GarouDan – 2012-05-09T14:10:17.337

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

shgnInc

Posted 2012-05-08T22:14:55.677

Reputation: 375

0

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

Maybe it should be moved to http://askubuntu.com

Álvaro Justen

Posted 2012-05-08T22:14:55.677

Reputation: 344