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?
Asked
Active
Viewed 7.1k times
9
-
1possible duplicate of How do I remove Cinnamon? – Ringtail Nov 23 '12 at 16:40
5 Answers
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

Mostafa Ahangarha
- 4,408
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
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