What is the terminal command for easily uninstalling programs or software?
Asked
Active
Viewed 8.6k times
1 Answers
4
sudo apt-get remove <program name here>
(or aptitude instead of apt-get, if you prefer it).

Phlya
- 391
- 3
- 15
sudo apt-get --purge remove <program name here>
will go farther and remove any configuration files the program created. Good if you're having problems with a program and just want to start over. Bad if you might want to re-install later and pick up where you were with that program. – Marc Jun 21 '13 at 21:50