Learn how to install, update, and remove software on Linux Mint
Linux Mint provides several ways to manage software. We'll cover both graphical and command-line methods.
The Software Manager is a user-friendly app store for Linux Mint. To use it:
The Update Manager keeps your system and installed software up to date:
APT is a powerful command-line tool for managing software. Here are some basic commands:
sudo apt update
Update the package list
sudo apt upgrade
Upgrade all installed packages
sudo apt install [package-name]
Install a package
sudo apt remove [package-name]
Remove a package
apt search [keyword]
Search for packages
apt show [package-name]
Show package details
Remember to use sudo
for commands that require administrative privileges.
Linux Mint uses software repositories to distribute and update software. The main types are:
You can manage repositories in the Software Sources application or by editing the /etc/apt/sources.list
file.
Linux Mint also supports alternative package formats:
flatpak
command.
sudo apt autoremove
occasionally to remove unnecessary packages.