1 <!-- -*- mode: sgml; mode: fold -*- -->
2 <!doctype refentry PUBLIC "-//OASIS//DTD DocBook V3.1//EN" [
4 <!ENTITY % aptent SYSTEM "apt.ent">
13 <refentrytitle>apt-cache</>
17 <!-- Man page title -->
20 <refpurpose>APT package handling utility -- cache manipulator</>
27 <arg><option>-hvsn</></arg>
28 <arg><option>-o=<replaceable/config string/</></arg>
29 <arg><option>-c=<replaceable/file/</></arg>
31 <arg>add <arg choice="plain" rep="repeat"><replaceable>file</replaceable></arg></arg>
33 <arg>showpkg <arg choice="plain" rep="repeat"><replaceable>pkg</replaceable></arg></arg>
34 <arg>showsrc <arg choice="plain" rep="repeat"><replaceable>pkg</replaceable></arg></arg>
39 <arg>search <arg choice="plain"><replaceable>regex</replaceable></arg></arg>
40 <arg>show <arg choice="plain" rep="repeat"><replaceable>pkg</replaceable></arg></arg>
41 <arg>showpkg <arg choice="plain" rep="repeat"><replaceable>pkg</replaceable></arg></arg>
42 <arg>depends <arg choice="plain" rep="repeat"><replaceable>pkg</replaceable></arg></arg>
43 <arg>rdepends <arg choice="plain" rep="repeat"><replaceable>pkg</replaceable></arg></arg>
44 <arg>pkgnames <arg choice="plain"><replaceable>prefix</replaceable></arg></arg>
45 <arg>dotty <arg choice="plain" rep="repeat"><replaceable>pkg</replaceable></arg></arg>
46 <arg>policy <arg choice="plain" rep="repeat"><replaceable>pkgs</replaceable></arg></arg>
51 <RefSect1><Title>Description</>
53 <command/apt-cache/ performs a variety of operations on APT's package
54 cache. <command/apt-cache/ does not manipulate the state of the system
55 but does provide operations to search and generate interesting output
56 from the package metadata.
59 Unless the <option/-h/, or <option/--help/ option is given, one of the
60 commands below must be present.
63 <VarListEntry><Term>add <replaceable/file(s)/</Term>
65 <literal/add/ adds the named package index files to the package cache.
66 This is for debugging only.
69 <VarListEntry><Term>gencaches</Term>
71 <literal/gencaches/ performs the same opration as
72 <command/apt-get check/. It builds the source and package caches from
73 the sources in &sources-list; and from <filename>/var/lib/dpkg/status</>.
76 <VarListEntry><Term>showpkg <replaceable/pkg(s)/</Term>
78 <literal/showpkg/ displays information about the packages listed on the
79 command line. Remaining arguments are package names. The available
80 versions and reverse dependencies of each package listed are listed, as
81 well as forward dependencies for each version. Forward (normal)
82 dependencies are those packages upon which the package in question
83 depends; reverse dependencies are those packages that depend upon the
84 package in question. Thus, forward dependencies must be satisfied for a
85 package, but reverse dependencies need not be.
86 For instance, <command>apt-cache showpkg libreadline2</> would produce
87 output similar to the following:
89 <informalexample><programlisting>
91 Versions: 2.1-12(/var/state/apt/lists/foo_Packages),
93 libreadlineg2,libreadline2
94 libreadline2-altdev,libreadline2
96 2.1-12 - libc5 (2 5.4.0-0) ncurses3.0 (0 (null))
100 </programlisting></informalexample>
103 Thus it may be seen that libreadline2, version 2.1-12, depends on libc5 and
104 ncurses3.0 which must be installed for libreadline2 to work.
105 In turn, libreadlineg2 and libreadline2-altdev depend on libreadline2. If
106 libreadline2 is installed, libc5 and ncurses3.0 (and ldso) must also be
107 installed; libreadlineg2 and libreadline2-altdev do not have to be
108 installed. For the specific meaning of the remainder of the output it
109 is best to consult the apt source code.
112 <VarListEntry><Term>stats</Term>
114 <literal/stats/ displays some statistics about the cache.
115 No further arguments are expected. Statistics reported are:
118 <literal/Total package names/ is the number of package names found
123 <literal/Normal packages/ is the number of regular, ordinary package
124 names; these are packages that bear a one-to-one correspondence between
125 their names and the names used by other packages for them in
126 dependencies. The majority of packages fall into this category.
130 <literal/Pure virtual packages/ is the number of packages that exist
131 only as a virtual package name; that is, packages only "provide" the
132 virtual package name, and no package actually uses the name. For
133 instance, "mail-transport-agent" in the Debian GNU/Linux system is a
134 pure virtual package; several packages provide "mail-transport-agent",
135 but there is no package named "mail-transport-agent".
139 <literal/Single virtual packages/ is the number of packages with only
140 one package providing a particular virtual package. For example, in the
141 Debian GNU/Linux system, "X11-text-viewer" is a virtual package, but
142 only one package, xless, provides "X11-text-viewer".
146 <literal/Mixed virtual packages/ is the number of packages that either
147 provide a particular virtual package or have the virtual package name
148 as the package name. For instance, in the Debian GNU/Linux system,
149 "debconf" is both an actual package, and provided by the debconf-tiny
154 <literal/Missing/ is the number of package names that were referenced in
155 a dependency but were not provided by any package. Missing packages may
156 be in evidence if a full distribution is not accessed, or if a package
157 (real or virtual) has been dropped from the distribution. Usually they
158 are referenced from Conflicts statements.
162 <literal/Total distinct/ versions is the number of package versions
163 found in the cache; this value is therefore at least equal to the
164 number of total package names. If more than one distribution (both
165 "stable" and "unstable", for instance), is being accessed, this value
166 can be considerably larger than the number of total package names.
170 <literal/Total dependencies/ is the number of dependency relationships
171 claimed by all of the packages in the cache.
176 <VarListEntry><Term>showsrc <replaceable/pkg(s)/</Term>
178 <literal/showsrc/ displays all the source package records that match
179 the given package names. All versions are shown, as well as all
180 records that declare the name to be a Binary.
183 <VarListEntry><Term>dump</Term>
185 <literal/dump/ shows a short listing of every package in the cache. It is
186 primarily for debugging.
189 <VarListEntry><Term>dumpavail</Term>
191 <literal/dumpavail/ prints out an available list to stdout. This is
192 suitable for use with &dpkg; and is used by the &dselect; method.
195 <VarListEntry><Term>unmet</Term>
197 <literal/unmet/ displays a summary of all unmet dependencies in the
201 <VarListEntry><Term>show <replaceable/pkg(s)/</Term>
203 <literal/show/ performs a function similar to
204 <command>dpkg --print-avail</>i; it displays the package records for the
208 <VarListEntry><Term>search <replaceable/regex [ regex ... ]/</Term>
210 <literal/search/ performs a full text search on all available package
211 files for the regex pattern given. It searches the package names and the
212 descriptions for an occurrence of the string and prints out the package
213 name and the short description. If <option/--full/ is given then output
214 identical to <literal/show/ is produced for each matched package, and
215 if <option/--names-only/ is given then the long description is not
216 searched, only the package name is.
218 Seperate arguments can be used to specify multiple search patterns that
222 <VarListEntry><Term>depends <replaceable/pkg(s)/</Term>
224 <literal/depends/ shows a listing of each dependency a package has
225 and all the possible other packages that can fulfill that dependency.
228 <VarListEntry><Term>rdepends <replaceable/pkg(s)/</Term>
230 <literal/rdepends/ shows a listing of each reverse dependency a package
234 <VarListEntry><Term>pkgnames <replaceable/[ prefix ]/</Term>
236 This command prints the name of each package in the system. The optional
237 argument is a prefix match to filter the name list. The output is suitable
238 for use in a shell tab complete function and the output is generated
239 extremely quickly. This command is best used with the
240 <option/--generate/ option.
243 <VarListEntry><Term>dotty <replaceable/pkg(s)/</Term>
245 <literal/dotty/ takes a list of packages on the command line and
246 generates output suitable for use by dotty from the
247 <ulink url="http://www.research.att.com/sw/tools/graphviz/">GraphViz</>
248 package. The result will be a set of nodes and edges representing the
249 relationships between the packages. By default the given packages will
250 trace out all dependent packages; this can produce a very large graph.
251 To limit the output to only the packages listed on the command line,
252 set the <literal>APT::Cache::GivenOnly</> option.
255 The resulting nodes will have several shapes; normal packages are boxes,
256 pure provides are triangles, mixed provides are diamonds,
257 missing packages are hexagons. Orange boxes mean recursion was stopped
258 [leaf packages], blue lines are pre-depends, green lines are conflicts.
261 Caution, dotty cannot graph larger sets of packages.
263 <VarListEntry><Term>policy <replaceable/[ pkg(s) ]</Term>
265 <literal/policy/ is ment to help debug issues relating to the
266 preferences file. With no arguments it will print out the
267 priorities of each source. Otherwise it prints out detailed information
268 about the priority selection of the named package.
273 <RefSect1><Title>Options</>
277 <VarListEntry><term><option/-p/</><term><option/--pkg-cache/</>
279 Select the file to store the package cache. The package cache is the
280 primary cache used by all operations.
281 Configuration Item: <literal/Dir::Cache::pkgcache/.
284 <VarListEntry><term><option/-s/</><term><option/--src-cache/</>
286 Select the file to store the source cache. The source is used only by
287 <literal/gencaches/ and it stores a parsed version of the package
288 information from remote sources. When building the package cache the
289 source cache is used to advoid reparsing all of the package files.
290 Configuration Item: <literal/Dir::Cache::srcpkgcache/.
293 <VarListEntry><term><option/-q/</><term><option/--quiet/</>
295 Quiet; produces output suitable for logging, omitting progress indicators.
296 More qs will produce more quietness up to a maximum of 2. You can also use
297 <option/-q=#/ to set the quietness level, overriding the configuration file.
298 Configuration Item: <literal/quiet/.
301 <VarListEntry><term><option/-i/</><term><option/--important/</>
303 Print only important deps; for use with unmet. Causes only Depends and
304 Pre-Depends relations to be printed.
305 Configuration Item: <literal/APT::Cache::Important/.
308 <VarListEntry><term><option/-f/</><term><option/--full/</>
310 Print full package records when searching.
311 Configuration Item: <literal/APT::Cache::ShowFull/.
314 <VarListEntry><term><option/-a/</><term><option/--all-versions/</>
316 Print full records for all available versions. This is only applicable to
317 the <literal/show/ command.
318 Configuration Item: <literal/APT::Cache::AllVersions/.
321 <VarListEntry><term><option/-g/</><term><option/--generate/</>
323 Perform automatic package cache regeneration, rather than use the cache
324 as it is. This is the default; to turn it off, use <option/--no-generate/.
325 Configuration Item: <literal/APT::Cache::Generate/.
328 <VarListEntry><term><option/--names-only/</><term><options/-n/</>
330 Only search on the package names, not the long descriptions.
331 Configuration Item: <literal/APT::Cache::NamesOnly/.
334 <VarListEntry><term><option/--all-names/</>
336 Make <literal/pkgnames/ print all names, including virtual packages
337 and missing dependencies.
338 Configuration Item: <literal/APT::Cache::AllNames/.
341 <VarListEntry><term><option/--recurse/</>
343 Make <literal/depends/ recursive so that all packages mentioned are
345 Configuration Item: <literal/APT::Cache::RecurseDepends/.
353 <RefSect1><Title>Files</>
355 <VarListEntry><term><filename>/etc/apt/sources.list</></term>
357 Locations to fetch packages from.
358 Configuration Item: <literal/Dir::Etc::SourceList/.
361 <VarListEntry><term><filename>&statedir;/lists/</></term>
363 Storage area for state information for each package resource specified in
365 Configuration Item: <literal/Dir::State::Lists/.
368 <VarListEntry><term><filename>&statedir;/lists/partial/</></term>
370 Storage area for state information in transit.
371 Configuration Item: <literal/Dir::State::Lists/ (implicit partial).
376 <RefSect1><Title>See Also</>
378 &apt-conf;, &sources-list;, &apt-get;
381 <RefSect1><Title>Diagnostics</>
383 <command/apt-cache/ returns zero on normal operation, decimal 100 on error.