Managing packages in Ubuntu and Debian with apt-get and apt-cache
Debian-based operating systems (Ubuntu, Linux Mint, etc.) use a package management tool called APT (Advanced Package Tool). The main commands used to work with packages are apt-get (install, update and uninstall packages) and apt-cache (search and retrieve package information).Package management allows you to quickly and safely install, upgrade or uninstall software, automatically resolving dependency issues and keeping your system stable. In this tutorial, we'll take a closer look at working with packages using the command line.
All commands are run as root or using sudo.
Update package and system information
Update the list of available packages:apt-get update
This command updates information about available packages from the repositories.Upgrade installed packages to the latest available versions:
apt-get upgrade
The command updates already installed packages, but does not remove obsolete ones.Complete package update (with dependency conflicts resolved):
apt-get dist-upgrade
This command can install or remove packages to resolve dependencies and provide a complete system update.Search and retrieve package information
Search for a package by keyword:apt-cache search keyword
This command outputs a list of packages matching the keyword.Getting detailed information about the package:
apt-cache show package_name
The command displays the package description, version, dependencies, and other information.Checks the status of the package installation:
dpkg -l | grep package_name
This command checks to see if the package is installed on the system.Or use:
apt list --installed | grep package_name
A more modern way to check if a package is available.Installing and uninstalling packages
Package Installation:apt-get install package_name
This command installs the package and automatically loads its dependencies.Installing the local package (.deb):
dpkg -i имя_файла.deb
apt-get install -f
The first command installs the local package, the second fixes dependency issues.Deleting a package (with settings preserved):
apt-get remove package_name
Uninstalls the package, but retains the configuration files in case of reinstallation.Complete package removal (with deletion of configurations):
apt-get purge package_name
This command removes the package and its configuration files.Uninstall automatically installed unnecessary packages:
apt-get autoremove
Removes unused dependencies, freeing up space.Cleaning and managing the package cache
Clearing all downloaded package files:apt-get clean
Removes all downloaded package files from the cache.Remove obsolete packages from the cache:
apt-get autoclean
Clears the cache of outdated package versions.Working with repositories
Package repositories are defined in the file /etc/apt/sources.list. Changes to this file should be made with administrator privileges and caution.Adding third-party repositories (PPA):
add-apt-repository ppa:name/ppa
apt-get update
The first command adds a repository, the second updates the list of available packages.Package version management
You can install a specific version of a package by adding =version after the package name:apt-get install package_name=version
Fix package version (prevents automatic updates):
apt-mark hold package_name
Removes the version fixation:
apt-mark unhold package_name
Useful tips and advice
- Always check the changes that will be made when installing or uninstalling packages;
- Use the apt command (the more modern equivalent of apt-get) for a more compact syntax;
- Clean the system regularly:
apt-get autoremove
- Clear the package cache after major updates:
apt-get clean
- Avoid confirmations when installing:
apt-get install -y package_name
- Review the history of installed packages:
less /var/log/dpkg.log
Conclusion
Proper use of apt-get and apt-cache will allow you to efficiently manage your Debian and Ubuntu software, keeping your system up to date and stable. By following the practices described above, you can make administration much easier and improve system security and performance.30 Mar 2025, 20:20:06