I'm trying to figure out how software management works on Linux Mint. I've noticed that apps like Firefox and LibreOffice don't show up in the Installed Software list of the GUI Software Manager. I can uninstall them through the terminal, but I would prefer to do it from a graphical interface. Is there a way to manage the installation and removal of these applications through the GUI, or am I just missing something? Thanks for any help!
5 Answers
Mint is based on Ubuntu/Debian, so I suggest installing the Synaptic Package Manager. It's super powerful for managing your software. You can install it using the terminal with the command: `sudo apt install synaptic`. It gives you more control over installs and removes.
You can also use the command line for uninstalls. Something like `sudo apt purge firefox -y && sudo apt autoremove -y` would do the trick, but be cautious with using `-y` as it might accidentally remove necessary packages. It's safer to manually confirm before removing packages.
Don't worry, you're not alone in this! Yes, those apps should show up in the Software Manager if you use the right click menu in the application menu. Just a little oversight on both our parts, but it’s easy to correct.
Make sure to check how you installed those apps. You can uninstall Firefox by typing `sudo apt remove firefox` in the terminal. It's worth noting that some applications may not show up in the Software Manager based on how they were installed originally.
You can uninstall applications directly through the menu! Just right-click on the app you want to remove and select 'Uninstall.' Alternatively, in the Software Manager, click the hamburger menu in the top right, choose 'Show Installed,' select the app, and hit 'Remove.' It's pretty straightforward once you know where to look!

Definitely go for Synaptic! It makes managing packages so much easier. Plus, you can add a filter search bar with a couple more commands to make it even handier.