apt-cache.8.xml 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. <?xml version="1.0" encoding="utf-8" standalone="no"?>
  2. <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  4. <!ENTITY % aptent SYSTEM "apt.ent"> %aptent;
  5. <!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment;
  6. <!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor;
  7. ]>
  8. <refentry>
  9. <refentryinfo>
  10. &apt-author.jgunthorpe;
  11. &apt-author.team;
  12. &apt-email;
  13. &apt-product;
  14. <!-- The last update date -->
  15. <date>2012-06-09T00:00:00Z</date>
  16. </refentryinfo>
  17. <refmeta>
  18. <refentrytitle>apt-cache</refentrytitle>
  19. <manvolnum>8</manvolnum>
  20. <refmiscinfo class="manual">APT</refmiscinfo>
  21. </refmeta>
  22. <!-- Man page title -->
  23. <refnamediv>
  24. <refname>apt-cache</refname>
  25. <refpurpose>query the APT cache</refpurpose>
  26. </refnamediv>
  27. &synopsis-command-apt-cache;
  28. <refsect1><title>Description</title>
  29. <para><command>apt-cache</command> performs a variety of operations on APT's package
  30. cache. <command>apt-cache</command> does not manipulate the state of the system
  31. but does provide operations to search and generate interesting output
  32. from the package metadata.</para>
  33. <para>Unless the <option>-h</option>, or <option>--help</option> option is given, one of the
  34. commands below must be present.</para>
  35. <variablelist>
  36. <varlistentry><term><option>gencaches</option></term>
  37. <listitem><para><literal>gencaches</literal> creates APT's package cache. This is done
  38. implicitly by all commands needing this cache if it is missing or outdated.</para></listitem>
  39. </varlistentry>
  40. <varlistentry><term><option>showpkg</option> <option><replaceable>&synopsis-pkg;</replaceable>…</option></term>
  41. <listitem><para><literal>showpkg</literal> displays information about the packages listed on the
  42. command line. Remaining arguments are package names. The available
  43. versions and reverse dependencies of each package listed are listed, as
  44. well as forward dependencies for each version. Forward (normal)
  45. dependencies are those packages upon which the package in question
  46. depends; reverse dependencies are those packages that depend upon the
  47. package in question. Thus, forward dependencies must be satisfied for a
  48. package, but reverse dependencies need not be.
  49. For instance, <command>apt-cache showpkg libreadline2</command> would produce
  50. output similar to the following:</para>
  51. <informalexample><programlisting>
  52. Package: libreadline2
  53. Versions: 2.1-12(/var/state/apt/lists/foo_Packages),
  54. Reverse Depends:
  55. libreadlineg2,libreadline2
  56. libreadline2-altdev,libreadline2
  57. Dependencies:
  58. 2.1-12 - libc5 (2 5.4.0-0) ncurses3.0 (0 (null))
  59. Provides:
  60. 2.1-12 -
  61. Reverse Provides:
  62. </programlisting></informalexample>
  63. <para>Thus it may be seen that libreadline2, version 2.1-12, depends on
  64. libc5 and ncurses3.0 which must be installed for libreadline2 to work.
  65. In turn, libreadlineg2 and libreadline2-altdev depend on libreadline2. If
  66. libreadline2 is installed, libc5 and ncurses3.0 (and ldso) must also be
  67. installed; libreadlineg2 and libreadline2-altdev do not have to be
  68. installed. For the specific meaning of the remainder of the output it
  69. is best to consult the apt source code.</para></listitem>
  70. </varlistentry>
  71. <varlistentry><term><option>stats</option></term><listitem><para><literal>stats</literal> displays some statistics about the cache.
  72. No further arguments are expected. Statistics reported are:
  73. <itemizedlist>
  74. <listitem><para><literal>Total package names</literal> is the number of package names found
  75. in the cache.</para>
  76. </listitem>
  77. <listitem><para><literal>Normal packages</literal> is the number of regular, ordinary package
  78. names; these are packages that bear a one-to-one correspondence between
  79. their names and the names used by other packages for them in
  80. dependencies. The majority of packages fall into this category.</para>
  81. </listitem>
  82. <listitem><para><literal>Pure virtual packages</literal> is the number of packages that exist
  83. only as a virtual package name; that is, packages only "provide" the
  84. virtual package name, and no package actually uses the name. For
  85. instance, "mail-transport-agent" in the Debian system is a
  86. pure virtual package; several packages provide "mail-transport-agent",
  87. but there is no package named "mail-transport-agent".</para>
  88. </listitem>
  89. <listitem><para><literal>Single virtual packages</literal> is the number of packages with only
  90. one package providing a particular virtual package. For example, in the
  91. Debian system, "X11-text-viewer" is a virtual package, but
  92. only one package, xless, provides "X11-text-viewer".</para>
  93. </listitem>
  94. <listitem><para><literal>Mixed virtual packages</literal> is the number of packages that either
  95. provide a particular virtual package or have the virtual package name
  96. as the package name. For instance, in the Debian system,
  97. "debconf" is both an actual package, and provided by the debconf-tiny
  98. package.</para>
  99. </listitem>
  100. <listitem><para><literal>Missing</literal> is the number of package names that were referenced in
  101. a dependency but were not provided by any package. Missing packages may
  102. be an evidence if a full distribution is not accessed, or if a package
  103. (real or virtual) has been dropped from the distribution. Usually they
  104. are referenced from Conflicts or Breaks statements.</para>
  105. </listitem>
  106. <listitem><para><literal>Total distinct</literal> versions is the number of package versions
  107. found in the cache; this value is therefore at least equal to the
  108. number of total package names. If more than one distribution is being accessed
  109. (for instance, "stable" and "unstable"), this value
  110. can be considerably larger than the number of total package names.</para>
  111. </listitem>
  112. <listitem><para><literal>Total dependencies</literal> is the number of dependency relationships
  113. claimed by all of the packages in the cache.</para>
  114. </listitem>
  115. </itemizedlist>
  116. </para></listitem>
  117. </varlistentry>
  118. <varlistentry><term><option>showsrc</option> <option><replaceable>&synopsis-pkg;</replaceable>…</option></term>
  119. <listitem><para><literal>showsrc</literal> displays all the source package records that match
  120. the given package names. All versions are shown, as well as all
  121. records that declare the name to be a binary package.</para></listitem>
  122. </varlistentry>
  123. <varlistentry><term><option>dump</option></term>
  124. <listitem><para><literal>dump</literal> shows a short listing of every package in the cache. It is
  125. primarily for debugging.</para></listitem>
  126. </varlistentry>
  127. <varlistentry><term><option>dumpavail</option></term>
  128. <listitem><para><literal>dumpavail</literal> prints out an available list to stdout. This is
  129. suitable for use with &dpkg; and is used by the &dselect; method.</para></listitem>
  130. </varlistentry>
  131. <varlistentry><term><option>unmet</option></term>
  132. <listitem><para><literal>unmet</literal> displays a summary of all unmet dependencies in the
  133. package cache.</para></listitem>
  134. </varlistentry>
  135. <varlistentry><term><option>show</option> <option><replaceable>&synopsis-pkg;</replaceable>…</option></term>
  136. <listitem><para><literal>show</literal> performs a function similar to
  137. <command>dpkg --print-avail</command>; it displays the package records for the
  138. named packages.</para></listitem>
  139. </varlistentry>
  140. <varlistentry><term><option>search</option> <option><replaceable>&synopsis-regex;</replaceable>…</option></term>
  141. <listitem><para><literal>search</literal> performs a full text search on all available package
  142. lists for the POSIX regex pattern given, see &regex;.
  143. It searches the package names and the
  144. descriptions for an occurrence of the regular expression and prints out
  145. the package name and the short description, including virtual package
  146. names.
  147. If <option>--full</option> is given
  148. then output identical to <literal>show</literal> is produced for each matched
  149. package, and if <option>--names-only</option> is given then the long description
  150. is not searched, only the package name is.</para>
  151. <para>
  152. Separate arguments can be used to specify multiple search patterns that
  153. are and'ed together.</para></listitem>
  154. </varlistentry>
  155. <varlistentry><term><option>depends</option> <option><replaceable>&synopsis-pkg;</replaceable>…</option></term>
  156. <listitem><para><literal>depends</literal> shows a listing of each dependency a package has
  157. and all the possible other packages that can fulfill that dependency.</para></listitem>
  158. </varlistentry>
  159. <varlistentry><term><option>rdepends</option> <option><replaceable>&synopsis-pkg;</replaceable>…</option></term>
  160. <listitem><para><literal>rdepends</literal> shows a listing of each reverse dependency a
  161. package has.</para></listitem>
  162. </varlistentry>
  163. <varlistentry><term><option>pkgnames</option> <optional><replaceable>&synopsis-prefix;</replaceable></optional></term>
  164. <listitem><para>This command prints the name of each package APT knows. The optional
  165. argument is a prefix match to filter the name list. The output is suitable
  166. for use in a shell tab complete function and the output is generated
  167. extremely quickly. This command is best used with the
  168. <option>--generate</option> option.</para>
  169. <para>Note that a package which APT knows of is not necessarily available to download,
  170. installable or installed, e.g. virtual packages are also listed in the generated list.
  171. </para></listitem>
  172. </varlistentry>
  173. <varlistentry><term><option>dotty</option> <option><replaceable>&synopsis-pkg;</replaceable>…</option></term>
  174. <listitem><para><literal>dotty</literal> takes a list of packages on the command line and
  175. generates output suitable for use by dotty from the
  176. <ulink url="http://www.research.att.com/sw/tools/graphviz/">GraphViz</ulink>
  177. package. The result will be a set of nodes and edges representing the
  178. relationships between the packages. By default the given packages will
  179. trace out all dependent packages; this can produce a very large graph.
  180. To limit the output to only the packages listed on the command line,
  181. set the <literal>APT::Cache::GivenOnly</literal> option.</para>
  182. <para>The resulting nodes will have several shapes; normal packages are boxes,
  183. pure virtual packages are triangles, mixed virtual packages are diamonds,
  184. missing packages are hexagons. Orange boxes mean recursion was stopped
  185. (leaf packages), blue lines are pre-depends, green lines are conflicts.</para>
  186. <para>Caution, dotty cannot graph larger sets of packages.</para></listitem>
  187. </varlistentry>
  188. <varlistentry><term><option>xvcg</option> <option><replaceable>&synopsis-pkg;</replaceable>…</option></term>
  189. <listitem><para>The same as <literal>dotty</literal>, only for xvcg from the
  190. <ulink url="http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html">VCG tool</ulink>.
  191. </para></listitem></varlistentry>
  192. <varlistentry><term><option>policy</option> <optional><replaceable>&synopsis-pkg;</replaceable>…</optional></term>
  193. <listitem><para><literal>policy</literal> is meant to help debug issues relating to the
  194. preferences file. With no arguments it will print out the
  195. priorities of each source. Otherwise it prints out detailed information
  196. about the priority selection of the named package.</para></listitem>
  197. </varlistentry>
  198. <varlistentry><term><option>madison</option> <option><replaceable>&synopsis-pkg;</replaceable>…</option></term>
  199. <listitem><para><literal>apt-cache</literal>'s <literal>madison</literal> command attempts to mimic
  200. the output format and a subset of the functionality of the Debian
  201. archive management tool, <literal>madison</literal>. It displays
  202. available versions of a package in a tabular format. Unlike the
  203. original <literal>madison</literal>, it can only display information for
  204. the architecture for which APT has retrieved package lists
  205. (<literal>APT::Architecture</literal>).</para></listitem>
  206. </varlistentry>
  207. </variablelist>
  208. </refsect1>
  209. <refsect1><title>options</title>
  210. &apt-cmdblurb;
  211. <variablelist>
  212. <varlistentry><term><option>-p</option></term><term><option>--pkg-cache</option></term>
  213. <listitem><para>Select the file to store the package cache. The package cache is the
  214. primary cache used by all operations.
  215. Configuration Item: <literal>Dir::Cache::pkgcache</literal>.</para></listitem>
  216. </varlistentry>
  217. <varlistentry><term><option>-s</option></term><term><option>--src-cache</option></term>
  218. <listitem><para>Select the file to store the source cache. The source is used only by
  219. <literal>gencaches</literal> and it stores a parsed version of the package
  220. information from remote sources. When building the package cache the
  221. source cache is used to avoid reparsing all of the package files.
  222. Configuration Item: <literal>Dir::Cache::srcpkgcache</literal>.</para></listitem>
  223. </varlistentry>
  224. <varlistentry><term><option>-q</option></term><term><option>--quiet</option></term>
  225. <listitem><para>Quiet; produces output suitable for logging, omitting progress indicators.
  226. More q's will produce more quietness up to a maximum of 2. You can also use
  227. <option>-q=#</option> to set the quietness level, overriding the configuration file.
  228. Configuration Item: <literal>quiet</literal>.</para></listitem>
  229. </varlistentry>
  230. <varlistentry><term><option>-i</option></term><term><option>--important</option></term>
  231. <listitem><para>Print only important dependencies; for use with <literal>unmet</literal>
  232. and <literal>depends</literal>. Causes only Depends and
  233. Pre-Depends relations to be printed.
  234. Configuration Item: <literal>APT::Cache::Important</literal>.</para></listitem>
  235. </varlistentry>
  236. <varlistentry><term><option>--no-pre-depends</option></term>
  237. <term><option>--no-depends</option></term>
  238. <term><option>--no-recommends</option></term>
  239. <term><option>--no-suggests</option></term>
  240. <term><option>--no-conflicts</option></term>
  241. <term><option>--no-breaks</option></term>
  242. <term><option>--no-replaces</option></term>
  243. <term><option>--no-enhances</option></term>
  244. <listitem><para>Per default the <literal>depends</literal> and
  245. <literal>rdepends</literal> print all dependencies. This can be tweaked with
  246. these flags which will omit the specified dependency type.
  247. Configuration Item: <literal>APT::Cache::Show<replaceable>DependencyType</replaceable></literal>
  248. e.g. <literal>APT::Cache::ShowRecommends</literal>.</para></listitem>
  249. </varlistentry>
  250. <varlistentry><term><option>-f</option></term><term><option>--full</option></term>
  251. <listitem><para>Print full package records when searching.
  252. Configuration Item: <literal>APT::Cache::ShowFull</literal>.</para></listitem>
  253. </varlistentry>
  254. <varlistentry><term><option>-a</option></term><term><option>--all-versions</option></term>
  255. <listitem><para>Print full records for all available versions. This is the
  256. default; to turn it off, use <option>--no-all-versions</option>.
  257. If <option>--no-all-versions</option> is specified, only the candidate version
  258. will be displayed (the one which would be selected for installation).
  259. This option is only applicable to the <literal>show</literal> command.
  260. Configuration Item: <literal>APT::Cache::AllVersions</literal>.</para></listitem>
  261. </varlistentry>
  262. <varlistentry><term><option>-g</option></term><term><option>--generate</option></term>
  263. <listitem><para>Perform automatic package cache regeneration, rather than use the cache
  264. as it is. This is the default; to turn it off, use <option>--no-generate</option>.
  265. Configuration Item: <literal>APT::Cache::Generate</literal>.</para></listitem>
  266. </varlistentry>
  267. <varlistentry><term><option>--names-only</option></term><term><option>-n</option></term>
  268. <listitem><para>Only search on the package names, not the long descriptions.
  269. Configuration Item: <literal>APT::Cache::NamesOnly</literal>.</para></listitem>
  270. </varlistentry>
  271. <varlistentry><term><option>--all-names</option></term>
  272. <listitem><para>Make <literal>pkgnames</literal> print all names, including virtual packages
  273. and missing dependencies.
  274. Configuration Item: <literal>APT::Cache::AllNames</literal>.</para></listitem>
  275. </varlistentry>
  276. <varlistentry><term><option>--recurse</option></term>
  277. <listitem><para>Make <literal>depends</literal> and <literal>rdepends</literal> recursive so
  278. that all packages mentioned are printed once.
  279. Configuration Item: <literal>APT::Cache::RecurseDepends</literal>.</para></listitem>
  280. </varlistentry>
  281. <varlistentry><term><option>--installed</option></term>
  282. <listitem><para>
  283. Limit the output of <literal>depends</literal> and <literal>rdepends</literal> to
  284. packages which are currently installed.
  285. Configuration Item: <literal>APT::Cache::Installed</literal>.</para></listitem>
  286. </varlistentry>
  287. &apt-commonoptions;
  288. </variablelist>
  289. </refsect1>
  290. <refsect1><title>Files</title>
  291. <variablelist>
  292. &file-sourceslist;
  293. &file-statelists;
  294. </variablelist>
  295. </refsect1>
  296. <refsect1><title>See Also</title>
  297. <para>&apt-conf;, &sources-list;, &apt-get;
  298. </para>
  299. </refsect1>
  300. <refsect1><title>Diagnostics</title>
  301. <para><command>apt-cache</command> returns zero on normal operation, decimal 100 on error.
  302. </para>
  303. </refsect1>
  304. &manbugs;
  305. </refentry>