9

So I installed the cinnamon desktop environment on Ubuntu 12.10 but now I want to uninstall it. What would the command line(s) be to uninstall it?

Jorge Castro
  • 71,754
Zach Burns
  • 91
  • 1
  • 1
  • 2

5 Answers5

13

I remember something like that

sudo apt-get purge cinnamon  
Seth
  • 58,122
8

In my case, I uninstalled it by the command mentioned by Enes. But I was still getting notification for updating Cinnamon.

I solved it by using these two commands:

sudo apt-get purge cinnamon
...
sudo apt-get autoremove
2

In order to remove cinnamon and all the related packages the PPA installed you need first to install PPA-purge: disables a PPA and reverts to official packages.

sudo apt-get install ppa-purge && sudo ppa-purge ppa:gwendal-lebihan-dev/cinnamon-stable

You can see a little example of how to use PPA-purge http://www.webupd8.org/2009/12/remove-ppa-repositories-via-command.html

xangua
  • 7,217
0
sudo apt-get purge cinnamon --autoremove
null
  • 1
0

First, check what is going to be removed

sudo dpkg -l | grep .cinnamon.

If you are ok with it, run this command

sudo apt autoremove --purge cinnamon*

Command explanation

# dpkg -l       lists all installed packages
# grep .cinnamon.   filters, so that only packages with keyword cinnamon within their names, listed
# purge         removes mentioned package
# autoremove    tries to remove dependency packages
Pran
  • 129