apt Linux Command with Examples

October 21, 2022

Introduction

apt is an interactive command-line tool for managing deb packages on different Linux distributions. The package manager installs, removes, updates, and upgrades deb packages.

This tutorial will teach you how to use the apt Linux command with examples.

apt Linux Command with Examples

Prerequisites

apt Command Syntax

The basic apt syntax is:

apt command
apt [options] command [packages]

Add at least one command to run the apt tool successfully. To manage a specific package, include the name of the package in the command.

The apt utility supports several options for modifying its output.

apt Command Options

apt allows the use of different options to customize process. Some common arguments are:

OptionDescription
-d, --download-onlyDownloads a package but does not continue with the installation.
--no-downloadDoes not download any packages and uses the ones already downloaded.
--assume-noAnswers "no" to all prompts.
-yAnswers "yes" to prompts without interrupting the process.
-f, --fix-brokenTries to fix broken dependencies.
-s, --simulateDoes not alter the system, only displays what the output will be.
-h, --helpPrints a help guide and leads to an Easter Egg.

Most Common apt Commands

The apt tool works with many commands. The following table provides the most common examples.

CommandDescription
updateGets the info about the latest versions of available packages but does not install any upgrades.
upgradeDownloads the up-to-date package versions and upgrades installed packages to the new version.
full-upgradeUpgrades the currently installed packages and removes packages not needed for the full system upgrade.
installInstalls a specified package from the repository.
removeDeletes a package but leaves configuration files.
purgeDeletes a package and any configuration files.
autoremoveRemoves no longer required dependencies.
listLists all available packages or packages according to specific criteria.
searchSearches for packages whose name or description contains the search term.
showPrints details about a specific package.
edit-sourcesAllows users to edit package sources in a text editor.

apt commands require the use of sudo to complete when root permissions are necessary to read, write, or execute the files.

When you try to install some tools without sudo, the following error message appears:

Running apt without sudo terminal output

How to Use apt

Linux systems already have a primary package manager for deb files, dpkg. Still, apt is a more straightforward way to handle deb packages. The apt command-line utility manages packages automatically, and installs and removes dependencies as needed.

Update Packages with apt update

The apt update command updates the local repository with package metadata (info about the latest versions available) and prints the list of upgradeable packages. Always execute the update command before upgrades or installations to ensure to get the latest version.

sudo apt update
sudo apt update terminal output

Upgrade Packages with apt upgrade

Upgrade installed packages to the latest versions with apt upgrade. When you run the command without the package name, apt upgrade affects all installed packages:

sudo apt upgrade
sudo apt upgrade terminal output

To upgrade a specific package, append the name:

sudo apt upgrade lsof
sudo apt upgrade lsof terminal output

The update and upgrade commands also print output when executed together. To run these commands in one step and avoid being asked to confirm the process, use the -y flag:

sudo apt update && sudo apt upgrade -y
sudo apt update and sudo apt upgrade terminal output

Full-Upgrade Packages with apt full-upgrade

The command upgrades all installed packages. It also removes any packages if that is needed to upgrade the whole system. The full-upgrade is often done at the distribution release's life cycle end.

sudo apt full-upgrade
sudo apt full upgrade

Install Packages with apt install

The apt install command installs a specified package from the repository.

sudo apt install ffmpeg
sudo apt install terminal output

Before running apt install, update and upgrade packages to get the latest versions.

Only Download Packages with apt download

The apt download-only feature allows users to use deb files without installing them. To download packages without starting the installation, run:

sudo apt download apache2
sudo apt download terminal output

Remove Packages with apt remove

To remove an installed package, run:

sudo apt remove ffmpeg 
sudo apt remove terminal output

Type y or after being prompted and the command removes the package.

Remove All Configuration Files with apt purge

The remove command deletes the specified packages. Still, the command doesn't always remove all configuration files. Delete the package and configuration files, with purge:

sudo apt purge ffmpeg
sudo apt purge terminal output

Remove Unused Dependencies with apt autoremove

Package dependencies often remain on the system even when a package is removed. To remove the unneeded dependencies and save space, use:

sudo apt autoremove
sudo apt autoremove terminal output

Install and Remove Packages with one apt Command

Using apt with + or - suffixes added to the package names allows users to install and remove packages with one command. For instance, to install my mysql-server, but remove apache2, execute:

sudo apt remove apache2 mysql-server+
sudo apt remove and install in one step terminal output

List Packages with apt list

When executed without arguments, apt list prints the names and details of all available, installed, and upgradeable packages. Since the output is extensive, pipe the command with less or more to navigate the output easier.

For instance, pipe apt list with more to move through the terminal one page at a time:

apt list | more
apt list more terminal output

To show only installed packages, filter the output with:

apt list --installed
apt list installed terminal output

To get a list of all upgradeable packages, use:

apt list --upgradeable
apt list upgradeable terminal output

In this case, the output doesn't list any package, meaning that there are no packages to be upgraded.

Narrow the search even more by printing only a list of packages satisfying certain criteria. For instance, list packages containing the term lsof with:

apt list lsof
apt list lsof terminal output

List Package Dependencies with apt depends

To print all dependencies linked to a package, run:

apt depends lsof
apt depends terminal output

Search Packages with apt search

The apt search command scans names and descriptions of available packages for a specified search term. For instance, find all packages containing the term lsof:

sudo apt search lsof
sudo apt search terminal output

Assuming the search term is mentioned in many packages, the output is extensive. To narrow down the search, use the --names-only flag:

apt search --names-only lsof
apt search names only terminal output

The apt search command prints results if run without sudo as well, as long as user has access to the packages in question.

Get Package Info with apt show

To display details about the package like the dependencies, content description, download, and installation size, sources, etc., use:

apt show lsof
apt show terminal output

Conclusion

After going through this guide, you now know how to add, remove, install, and work with packages with the apt Linux command.

Next, the difference between APT and Snap or APT and YUM.

Was this article helpful?
YesNo
Sara Zivanov
Sara Zivanov is a technical writer at phoenixNAP who is passionate about making high-tech concepts accessible to everyone. Her experience as a content writer and her background in Engineering and Project Management allows her to streamline complex processes and make them user-friendly through her content.
Next you should read
How to use apt Package Manager on Ubuntu Linux
January 7, 2019

In Linux, special tools were developed for managing applications. Application software for Linux typically comes in a package. The default package manager for Ubuntu is apt-get. Linux operating systems use a software tool known...
Read more
How to Use apt-get reinstall on Debian and Ubuntu
October 22, 2020

When packages are accidentally removed or modified on Debian or Ubuntu, reinstalling them usually resolves the problem. The --reinstall flag is an apt-get command shortcut for reinstalling packages using the command line...
Read more
How to Fix 'add-apt-repository command not found' on Ubuntu & Debian
March 21, 2024

This guide shows you how to fix the 'add-apt-repository command not found' error in Ubuntu. This specific Ubuntu error appears when trying to add a new software repository and indicates that the command is not installed on your...
Read more
How to Use the Apt-Get Command in Linux
May 6, 2019

Advanced Package Tool (APT) is a package management system used on Debian, Ubuntu and other Linux distributions. It is quite powerful, allowing you to search for, install, manage, update, and remove software. Learn apt-get comm...
Read more