First, you can do an 'appitude' to list all of your packages you got installed. I prefer appitude as it is has a better handle on packages you want to look over that are installed, compared to apt-get. Just run this command in the terminal to bring up the list of packages you have installed to review them.
- Code: Select all
aptitude search '?installed ?not(?automatic)'
This will bring up manually downloaded packages you installed through the apt-get for example. For automatic updates, just leave out the < ?not > syntax variable like this.
- Code: Select all
aptitude search '?installed (?automatic)'
This will list your automatic package installs. Then you can just purge them through the apt-get if you want to remove ALL of the package along with its included files, or just do an autoremove to remove just the package itself without the binary.
- Code: Select all
sudo apt-get update && sudo apt-get autoremove [package]
Or to fully purge the package along with its binary files,
- Code: Select all
sudo apt-get purge [package]
Make sure its not a file or package you need for your linux mint build, or you will hose it out.

~~~~~~~~~~~~~~~~~
Take the package name and do a google search on it and see if its needed. The above code will give you a detailed description in your terminal for its use. Make sure you know if its essential to your system through research first. Manual installs are usually safer to purge without much issue.