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
  • 70,934
  • 124
  • 466
  • 653
Zach Burns
  • 91
  • 1
  • 1
  • 2
  • 1
    possible duplicate of [How do I remove Cinnamon?](http://askubuntu.com/questions/142533/how-do-i-remove-cinnamon) – Ringtail Nov 23 '12 at 16:40

5 Answers5

13

I remember something like that

sudo apt-get purge cinnamon  
Seth
  • 57,282
  • 43
  • 144
  • 200
7

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
Mostafa Ahangarha
  • 4,358
  • 7
  • 35
  • 51
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,178
  • 4
  • 26
  • 29
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
  • 119
  • 4