Linux apt-get command

Updated: 02/01/2021 by Computer Hope
apt-get command

On Linux operating systems that use the APT package management system, the apt-get command is used to install, remove, and perform other operations on installed software packages.

The apt-get command, and other core APT utilities, are available by default in the Debian, Ubuntu, and Linux Mint operating systems.

Syntax

apt-get [-asqdyfmubV] [-o=config_string] [-c=config_file] 
        [-t=target_release] [-a=architecture] 
        {update | upgrade | dselect-upgrade | dist-upgrade |
        install pkg [{=pkg_version_number | /target_release}]... |
        remove pkg... | purge pkg... |
        source pkg [{=pkg_version_number | /target_release}]... |
        build-dep pkg [{=pkg_version_number | /target_release}]... |
        download pkg [{=pkg_version_number | /target_release}]... |
        check | clean | autoclean | autoremove | {-v | --version} |
        {-h | --help}}

Commands

update Resynchronizes the local index of packages files, updating information about new and updated packages that are available. The indexes are fetched from the location(s) specified in /etc/apt/sources.list.

An update should always be performed before an upgrade or dist-upgrade.
upgrade Installs the newest versions of all packages currently installed on the system, using the sources in /etc/apt/sources.list. If a package is currently installed and a new version is available, it is retrieved and upgraded. Under no circumstances are installed packages removed, or packages not already installed retrieved. New versions of currently installed packages that cannot be upgraded without changing the install status of another package will be left at their current version.

An update should always be performed first so that apt-get knows which new versions of packages are available.
dist-upgrade In addition to performing the function of upgrade, dist-upgrade also intelligently handles changing dependencies with new versions of packages; apt-get has a "smart" conflict resolution system, and it attempts to upgrade the most important packages at the expense of less important ones if necessary.

The dist-upgrade command may therefore remove some packages.

The /etc/apt/sources.list file contains the list of locations from where package files will be retrieved. See also apt_preferences for a mechanism that overrides the general settings for individual packages.
dselect-upgrade Used with the traditional Debian packaging front-end, dselect. dselect-upgrade follows the changes made by dselect to the Status field of available packages, and performs the actions necessary to achieve that state (for instance, the removal of old and the installation of new packages).
install Installs one or more packages desired for installation or upgrading. Packages are specified by their package name, not a fully qualified file name (for instance, in a Debian system, "apt-utils" would be the argument provided, not "apt-utils_0.9.7.7ubuntu4_amd64.deb"). All packages required by the package(s) specified for installation are also retrieved and installed. The /etc/apt/sources.list file can locate the desired packages.

If a hyphen is appended to the package name (with no intervening space), the identified package is removed if it's installed. Similarly, a plus sign can designate a package to install. These annotation features can override decisions made by apt-get's default conflict resolution system.

A specific version of a package can be selected for installation by following the package name with an equals and the version of the package to select. This causes that specific version to be located and installed. Alternatively, a specific distribution can be selected by following the package name with a slash and the version of the distribution or the archive name ("stable", "testing", "unstable").

Both of the version selection mechanisms can downgrade packages and must be used with care. You don't want to manually remove a package that another installed package is dependent on.

If no package matches the given expression and the expression contains one of '.', '?' or '*' then it is assumed to be a POSIX-style regular expression, and it is applied to all package names in the database. Any matches are then installed (or removed). (Note that matching is done by substring; so 'lo.*' matches 'how-lo' and also 'lowest'. If this is undesired, anchor the regular expression with a '^' or '$' character, or create a more specific regular expression.
remove Identical to install except that packages are removed instead of installed. Note that removing a package leaves its configuration files on the system. If a plus sign is appended to the package name (with no intervening space), the identified package will be installed instead of removed.
purge Identical to remove except that packages are removed and purged (any configuration files are also deleted).
source Causes apt-get to fetch source packages. APT will examine the available packages to decide which source package to fetch. It will then find and download into the current directory the newest available version of that source package while respecting the default release, as set with the option APT::Default-Release, the -t option or per package with the pkg/release syntax.

Source packages are tracked separately from binary packages via deb-src lines in the sources.list file.

If the --compile option is specified then the package will be compiled to a binary .deb using dpkg-buildpackage for the architecture as defined by the --host-architecture option. If --download-only is specified then the source package are not unpacked.

A specific source version can be retrieved by postfixing the source name with an equals and then the version to fetch, similar to the mechanism used for the package files. This enables exact matching of the source package name and version, implicitly enabling the APT::Get::Only-Source option.

Note that source packages are not installed and tracked in the dpkg database like binary packages; they are downloaded to the current directory, like source tarballs.
build-dep Causes apt-get to install/remove packages in an attempt to satisfy the build dependencies for a source package. By default, the dependencies are satisfied to build the package natively. If desired a host architecture can be specified with the --host-architecture option instead.
check A diagnostic tool; it updates the package cache and checks for broken dependencies.
download Downloads the given binary package into the current directory.
clean Clears out the local repository of retrieved package files. It removes everything but the lock file from /var/cache/apt/archives/ and /var/cache/apt/archives/partial/. When APT is used as a dselect method, clean is run automatically. If you don't use dselect, you will likely want to run apt-get clean from time to time to free up disk space.
autoclean Like clean, autoclean clears out the local repository of retrieved package files. The difference is that it only removes package files that can no longer be downloaded, since they are largely useless. This allows a cache to be maintained over a long period without it growing out of control. The configuration option APT::Clean-Installed prevents installed packages from being erased if it's set to off.
autoremove Autoremove is used to remove packages that were automatically installed to satisfy dependencies for other packages and are now no longer needed.
changelog Downloads a package changelog and displays it through sensible-pager. The server name and base directory is defined in the APT::Changelogs::Server variable. By default, it displays the changelog for the version that is installed. However, you can specify the same options as for the install command.

Options

All command line options may be set using the configuration file; the descriptions indicate the configuration option to set. For boolean options you can override the config file using -f-,--no-f, or -f=no.

--no-install-recommends Do not consider recommended packages as a dependency for installing.

Configuration Item: APT::Install-Recommends.
--install-suggests Consider suggested packages as a dependency for installing.

Configuration Item: APT::Install-Suggests.
-d, --download-only Download only; package files are only retrieved, not unpacked or installed.

Configuration Item: APT::Get::Download-Only.
-f, --fix-broken Fix; attempt to correct a system with broken dependencies in place. This option, when used with install/remove, can omit any packages to permit APT to deduce a likely solution. If packages are specified, these have to completely correct the problem. The option is sometimes necessary when running APT for the first time; APT itself does not allow broken package dependencies to exist on a system. It is possible that a system's dependency structure can be so corrupt as to require manual intervention (which usually means using dselect or dpkg --remove to eliminate some offending packages). Use of this option together with -m may produce an error in some situations.

Configuration Item: APT::Get::Fix-Broken.
-m, --ignore-missing,
--fix-missing
Ignore missing packages; if packages cannot be retrieved or fail the integrity check after retrieval (corrupted package files), hold back those packages and handle the result. Use of this option together with -f may produce an error in some situations. If a package is selected for installation (particularly if it's mentioned on the command line) and it could not be downloaded then it will be silently held back.

Configuration Item: APT::Get::Fix-Missing.
--no-download Disables downloading of packages. This is best used with --ignore-missing to force APT to use only the .debs it has already downloaded.

Configuration Item: APT::Get::Download.
-q, --quiet Quiet; produces output suitable for logging, omitting progress indicators. More q's produce more quiet up to a maximum of 2. You can also use -q=# to set the quiet level, overriding the configuration file. Note that quiet level 2 implies -y; never use -qq without a no-action modifier such as -d, --print-uris or -s as APT may decide to do something you did not expect.

Configuration Item: quiet.
-s, --simulate,
--just-print, --dry-run,
--recon, --no-act
No action; perform a simulation of events that would occur but do not actually change the system.

Configuration Item: APT::Get::Simulate.

Simulated runs performed as a user, automatically deactivate locking (Debug::NoLocking), and if the option APT::Get::Show-User-Simulation-Note is set (as it is by default) a notice is displayed indicating that this is only a simulation. Runs performed as root do not trigger either NoLocking or the notice; superusers should know what they are doing without further warnings from apt-get.

Simulated runs print out several lines, each representing a dpkg operation: configure (Conf), remove (Remv) or unpack (Inst). Square brackets indicate broken packages, and empty square brackets indicate breaks that are of no consequence, which is very rare.
-y, --yes, --assume-yes Automatic yes to prompts; assume "yes" as answer to all prompts and run non-interactively. If an undesirable situation, such as changing a held package, trying to install an unauthenticated package or removing an essential package occurs then apt-get will abort.

Configuration Item: APT::Get::Assume-Yes.
--assume-no Automatic "no" to all prompts.

Configuration Item: APT::Get::Assume-No.
-u, --show-upgraded Show upgraded packages; print out a list of all packages that are to be upgraded.

Configuration Item: APT::Get::Show-Upgraded.
-V, --verbose-versions Show full versions for upgraded and installed packages.

Configuration Item: APT::Get::Show-Versions.
-a, --host-architecture This option controls the architecture packages are built for by apt-get source --compile and how cross-build dependencies are satisfied. By default, it is not set which indicates the host architecture is the same as the build architecture (which is defined by APT::Architecture).

Configuration Item: APT::Get::Host-Architecture.
-b, --compile, --build Compile source packages after downloading them.

Configuration Item: APT::Get::Compile.
--ignore-hold Ignore package holds; this causes apt-get to ignore a hold placed on a package. This may be useful with dist-upgrade to override many undesired holds.

Configuration Item: APT::Ignore-Hold.
--no-upgrade Do not upgrade packages; when used with install, no-upgrade prevents packages on the command line from being upgraded if they are already installed.

Configuration Item: APT::Get::Upgrade.
--only-upgrade Do not install new packages; when used with install, only-upgrade will install upgrades for already installed packages only and ignore requests to install new packages.

Configuration Item: APT::Get::Only-Upgrade.
--force-yes Force yes; this is a dangerous option that causes apt to continue without prompting if it's doing something potentially harmful. It should not be used except in very special situations. Using force-yes can potentially destroy your system!

Configuration Item: APT::Get::force-yes.
--print-uris Instead of fetching the files to install, their URIs are printed. Each URI has the path, the destination file name, the size and the expected MD5 hash. Note that the file name to write to will not always match the file name on the remote site! This also works with the source and update commands. When used with the update command the MD5 and size are not included, and it is up to the user to decompress any compressed files.

Configuration Item: APT::Get::Print-URIs.
--purge Use purge instead of remove for anything that would be removed. An asterisk ("*") is next to packages that are scheduled to be purged. remove --purge is equivalent to the purge command.

Configuration Item: APT::Get::Purge.
--reinstall Reinstall packages that are already installed and at the newest version.

Configuration Item: APT::Get::ReInstall.
--list-cleanup This option is on by default; use --no-list-cleanup to turn it off. When it is on, apt-get automatically manages the contents of /var/lib/apt/lists to ensure that obsolete files are erased. The only reason to turn it off is if you frequently change your sources list.

Configuration Item: APT::Get::List-Cleanup.
-t, --target-release,
--default-release
This option controls the default input to the policy engine; it creates a default pin at priority 990 using the specified release string. This overrides the general settings in /etc/apt/preferences. Specifically pinned packages are not affected by the value of this option. In short, this option lets you have control over which distribution packages will be retrieved. Some common examples might be -t '2.1*', -t unstable or -t sid.

Configuration Item: APT::Default-Release.
--trivial-only Only perform operations that are 'trivial'. Logically this can be considered related to --assume-yes; where --assume-yes will answer yes to any prompt, --trivial-only will answer no.

Configuration Item: APT::Get::Trivial-Only.
--no-remove If any packages are to be removed apt-get immediately aborts without prompting.

Configuration Item: APT::Get::Remove.
--auto-remove If the command is either install or remove, then this option acts like running the autoremove command, removing unused dependency packages.

Configuration Item: APT::Get::AutomaticRemove.
--only-source Only has meaning for the source and build-dep commands. Indicates that the given source names are not to be mapped through the binary table. This means that if this option is specified, these commands only accept source package names as arguments, rather than accepting binary package names and looking up the corresponding source package.

Configuration Item: APT::Get::Only-Source.
--diff-only, --dsc-only,
--tar-only
Download only the diff, dsc, or tar file of a source archive.

Configuration Item: APT::Get::Diff-Only, APT::Get::Dsc-Only, and APT::Get::Tar-Only.
--arch-only Only process architecture-dependent build-dependencies.

Configuration Item: APT::Get::Arch-Only.
--allow-unauthenticated Ignore if packages can't be authenticated and don't prompt about it. This is useful for tools like pbuilder.

Configuration Item: APT::Get::AllowUnauthenticated.
-h, --help Show a short usage summary.
-v, --version Show the program version.
-c, --config-file Configuration File; specify a configuration file to use. The program will read the default configuration file and then this configuration file. If configuration settings need to be set before the default configuration files are parsed specify a file with the APT_CONFIG environment variable. See apt.conf for syntax information.
-o, --option Set a Configuration Option; this sets an arbitrary configuration option. The syntax is -o Foo::Bar=bar. -o and --option can be used multiple times to set different options.

Files

/etc/apt/sources.list Locations of where to fetch packages.
/etc/apt/sources.list.d/ File fragments for locations of where to fetch packages.
/etc/apt/apt.conf APT configuration file.
/etc/apt/apt.conf.d/ APT configuration file fragments.
/etc/apt/preferences Version preferences file. This is where you would specify "pinning", i.e., a preference to get certain packages from a separate source or from a different version of a distribution.
/etc/apt/preferences.d/ File fragments for the version preferences.
/var/cache/apt/archives/ Storage area for retrieved package files.
/var/cache/apt/archives/partial/ Storage area for package files in transit.
/var/lib/apt/lists/ Storage area for state information for each package resource specified in sources.list.
/var/lib/apt/lists/partial/ Storage area for state information in transit.

Examples

Note

Many (if not most) apt-get operations require write access to the APT lock file, which requires administrator privileges — so most commands listed here are prefixed with sudo, and require your password.

sudo apt-get install libc6

Install libc6, which comprises the shared libraries of the embedded GNU C library.

sudo apt-get remove chromium

Remove chromium, the Chromium web browser package.

sudo apt-get clean

Clean the local repository of downloaded package files, clearing disk space.

apt-get download ruby

Download the archive file for the package named ruby into the current directory. The file has the .deb extension (in this case, ruby_x.x.x_all.deb). You could then install the package manually with dpkg --install.

apt — A unified APT front end for the command line.
apt-cache — Get information about software packages available through APT.
apt-file — Search for individual files in all available APT packages.
apt-mark — Change or view the settings of individual APT packages.
aptitude — Text-based front end for the APT package management system.
dpkg — Install, remove, and maintain Debian software packages.