Ubuntu – How to uninstall programs in Ubuntu Mate 16.04

software-uninstallubuntu-mate

I want to uninstall some programs in Ubuntu Mate 16.04.

I have searched for answers but they often say "use Synaptic" or "use the Software Centre" but I don't have either of these. I only have – rather confusingly I might add – Software Boutique, Software Updater, and Software & Updates.

Sometimes they also say "right click the program from the menu" but that doesn't give an uninstall option. I just want to see a list of installed programs and click "uninstall" or something similar.

Best Answer

You can use command line and introduce these commands:

sudo apt-get remove <program name>
sudo apt-get purge <program name>

First (apt-get remove) will remove program, but save its configuration files (usually in /etc); but the second (apt-get purge) will remove program with its configuration files.

Related Question