apt-cache [options] command
Perform low-level operations on the APT binary cache, including the
ability to perform searches and produce output reports from package
metadata. Useful for finding out information about packages.
Commands
- add files
-
Add the specified package index files to the source cache.
- depends pkgs
-
For each specified package, show a list of dependencies and packages
that can fulfill the dependency.
- dotty pkgs
-
Graph the relationships between the specified packages. The default
is to trace out all dependent packages; turn this behavior off by
setting the APT::Cache::GivenOnly
configuration option.
- dump
-
List every package in the cache. Used for debugging.
- dumpavail
-
Print a list of available packages to standard output, suitable for
use with dpkg.
- gencaches
-
Build source and package caches from the sources in the file
sources.list and from /var/lib/dpkg/status. Equivalent to running
apt-get check.
- pkgnames [prefix]
-
Print a list of packages in the system. If
prefix is specified, print only packages whose
names begin with that prefix. Most useful with the --generate option.
- policy [pkgs]
-
Print detailed information about the priority selection of each
specified package. With no arguments, print the priorities of each
source. Useful for debugging issues related to the
preferences file.
- search regex
-
Search package names and descriptions of all available package files
for the specified regular expression and print the name and short
description of each matching package. With --full, the output is identical to that
from the show command. With
--names-only, only the package
name is searched.
- show pkgs
-
Display the package records for each specified package. Similar to
running dpkg --print-avail.
- showpkg pkgs
-
Display information about the specified packages. For each package,
the output includes the available versions, packages that depend on
this package, and packages that this package depends on.
- stats
-
Display statistics about the cache.
- unmet
-
Display the unmet dependencies in the package cache.
Options
- -a, --all-versions
-
Print full records for all available versions. For use with the
show commands. The configuration
option is APT::Cache:: AllVersions.
- --all-names
-
Cause pkgnames to print all names,
including virtual packages and missing dependencies. The
configuration option is APT::Cache::AllNames.
- -c file, --config-file=file
-
Specify a configuration file to be read after the default
configuration file.
- -f, --full
-
Print full package records when searching. The configuration option
is APT::Cache::ShowFull.
- -g, --generate
-
Automatically regenerate the package cache rather than using the
current cache. The default is to regenerate; turn it off with
--no-generate. The
configuration option is APT::Cache::
Generate.
- -h, --help
-
Print usage information and exit.
- -i, --important
-
Print only important dependencies. For use with unmet. The configuration option is APT::Cache::Important.
- --names-only
-
Search only on package names, not long descriptions. The
configuration option is APT::Cache::NamesOnly.
- -o, --option
-
Set a configuration option. Syntax is -o
group::tool=option.
- -p file, --pkg-cache=file
-
Use the specified file for the package cache, the primary cache used
by all operations. The configuration option is Dir::Cache::pkgcache.
- -q, --quiet
-
Operate quietly, producing output for logging but no progress
indicators. Use -qq for even quieter
operation. The configuration option is quiet.
- --recurse
-
Run depends recursively, so all
mentioned packages are printed once. The configuration option is
APT::Cache:: RecurseDepends.
- -s file, --src-cache=file
-
Specify the source cache file used by gencaches. The configuration option is
Dir::Cache::srcpkgcache.
- -v, --version
-
Print version information and exit.