1 <?xml version=
"1.0" encoding=
"utf-8" standalone=
"no"?>
2 <!DOCTYPE refentry PUBLIC
"-//OASIS//DTD DocBook XML V4.2//EN"
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
5 <!ENTITY % aptent SYSTEM
"apt.ent">
13 &apt-author.jgunthorpe;
16 <firstname>Daniel
</firstname>
17 <surname>Burrows
</surname>
18 <contrib>Initial documentation of Debug::*.
</contrib>
19 <email>dburrows@debian.org
</email>
23 <!-- The last update date -->
24 <date>10 December
2008</date>
28 <refentrytitle>apt.conf
</refentrytitle>
29 <manvolnum>5</manvolnum>
30 <refmiscinfo class=
"manual">APT
</refmiscinfo>
33 <!-- Man page title -->
35 <refname>apt.conf
</refname>
36 <refpurpose>Configuration file for APT
</refpurpose>
39 <refsect1><title>Description
</title>
40 <para><filename>apt.conf
</filename> is the main configuration file for the APT suite of
41 tools, all tools make use of the configuration file and a common command line
42 parser to provide a uniform environment. When an APT tool starts up it will
43 read the configuration specified by the
<envar>APT_CONFIG
</envar> environment
44 variable (if any) and then read the files in
<literal>Dir::Etc::Parts
</literal>
45 then read the main configuration file specified by
46 <literal>Dir::Etc::main
</literal> then finally apply the
47 command line options to override the configuration directives, possibly
48 loading even more config files.
</para>
50 <para>The configuration file is organized in a tree with options organized into
51 functional groups. option specification is given with a double colon
52 notation, for instance
<literal>APT::Get::Assume-Yes
</literal> is an option within
53 the APT tool group, for the Get tool. options do not inherit from their
56 <para>Syntactically the configuration language is modeled after what the ISC tools
57 such as bind and dhcp use. Lines starting with
58 <literal>//
</literal> are treated as comments (ignored), as well as all text
59 between
<literal>/*
</literal> and
<literal>*/
</literal>, just like C/C++ comments.
60 Each line is of the form
61 <literal>APT::Get::Assume-Yes "true";
</literal> The trailing
62 semicolon is required and the quotes are optional. A new scope can be
63 opened with curly braces, like:
</para>
65 <informalexample><programlisting>
72 </programlisting></informalexample>
74 <para>with newlines placed to make it more readable. Lists can be created by
75 opening a scope and including a single string enclosed in quotes followed by a
76 semicolon. Multiple entries can be included, each separated by a semicolon.
</para>
78 <informalexample><programlisting>
79 DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";};
80 </programlisting></informalexample>
82 <para>In general the sample configuration file in
83 <filename>&docdir;examples/apt.conf
</filename> &configureindex;
84 is a good guide for how it should look.
</para>
86 <para>The names of the configuration items are not case-sensitive. So in the previous example
87 you could use
<literal>dpkg::pre-install-pkgs
</literal>.
</para>
89 <para>Two specials are allowed,
<literal>#include
</literal> and
<literal>#clear
</literal>
90 <literal>#include
</literal> will include the given file, unless the filename
91 ends in a slash, then the whole directory is included.
92 <literal>#clear
</literal> is used to erase a part of the configuration tree. The
93 specified element and all its descendants are erased.
</para>
95 <para>All of the APT tools take a -o option which allows an arbitrary configuration
96 directive to be specified on the command line. The syntax is a full option
97 name (
<literal>APT::Get::Assume-Yes
</literal> for instance) followed by an equals
98 sign then the new value of the option. Lists can be appended too by adding
99 a trailing :: to the list name.
</para>
102 <refsect1><title>The APT Group
</title>
103 <para>This group of options controls general APT behavior as well as holding the
104 options for all of the tools.
</para>
107 <varlistentry><term>Architecture
</term>
108 <listitem><para>System Architecture; sets the architecture to use when fetching files and
109 parsing package lists. The internal default is the architecture apt was
110 compiled for.
</para></listitem>
113 <varlistentry><term>Default-Release
</term>
114 <listitem><para>Default release to install packages from if more than one
115 version available. Contains release name, codename or release version. Examples: 'stable', 'testing', 'unstable', 'lenny', 'squeeze', '
4.0', '
5.0*'. See also &apt-preferences;.
</para></listitem>
118 <varlistentry><term>Ignore-Hold
</term>
119 <listitem><para>Ignore Held packages; This global option causes the problem resolver to
120 ignore held packages in its decision making.
</para></listitem>
123 <varlistentry><term>Clean-Installed
</term>
124 <listitem><para>Defaults to on. When turned on the autoclean feature will remove any packages
125 which can no longer be downloaded from the cache. If turned off then
126 packages that are locally installed are also excluded from cleaning - but
127 note that APT provides no direct means to reinstall them.
</para></listitem>
130 <varlistentry><term>Immediate-Configure
</term>
131 <listitem><para>Disable Immediate Configuration; This dangerous option disables some
132 of APT's ordering code to cause it to make fewer dpkg calls. Doing
133 so may be necessary on some extremely slow single user systems but
134 is very dangerous and may cause package install scripts to fail or worse.
135 Use at your own risk.
</para></listitem>
138 <varlistentry><term>Force-LoopBreak
</term>
139 <listitem><para>Never Enable this option unless you -really- know what you are doing. It
140 permits APT to temporarily remove an essential package to break a
141 Conflicts/Conflicts or Conflicts/Pre-Depend loop between two essential
142 packages. SUCH A LOOP SHOULD NEVER EXIST AND IS A GRAVE BUG. This option
143 will work if the essential packages are not tar, gzip, libc, dpkg, bash or
144 anything that those packages depend on.
</para></listitem>
147 <varlistentry><term>Cache-Limit
</term>
148 <listitem><para>APT uses a fixed size memory mapped cache file to store the 'available'
149 information. This sets the size of that cache (in bytes).
</para></listitem>
152 <varlistentry><term>Build-Essential
</term>
153 <listitem><para>Defines which package(s) are considered essential build dependencies.
</para></listitem>
156 <varlistentry><term>Get
</term>
157 <listitem><para>The Get subsection controls the &apt-get; tool, please see its
158 documentation for more information about the options here.
</para></listitem>
161 <varlistentry><term>Cache
</term>
162 <listitem><para>The Cache subsection controls the &apt-cache; tool, please see its
163 documentation for more information about the options here.
</para></listitem>
166 <varlistentry><term>CDROM
</term>
167 <listitem><para>The CDROM subsection controls the &apt-cdrom; tool, please see its
168 documentation for more information about the options here.
</para></listitem>
173 <refsect1><title>The Acquire Group
</title>
174 <para>The
<literal>Acquire
</literal> group of options controls the download of packages
175 and the URI handlers.
178 <varlistentry><term>PDiffs
</term>
179 <listitem><para>Try to download deltas called
<literal>PDiffs
</literal> for
180 Packages or Sources files instead of downloading whole ones. True
181 by default.
</para></listitem>
184 <varlistentry><term>Queue-Mode
</term>
185 <listitem><para>Queuing mode;
<literal>Queue-Mode
</literal> can be one of
<literal>host
</literal> or
186 <literal>access
</literal> which determines how APT parallelizes outgoing
187 connections.
<literal>host
</literal> means that one connection per target host
188 will be opened,
<literal>access
</literal> means that one connection per URI type
189 will be opened.
</para></listitem>
192 <varlistentry><term>Retries
</term>
193 <listitem><para>Number of retries to perform. If this is non-zero APT will retry failed
194 files the given number of times.
</para></listitem>
197 <varlistentry><term>Source-Symlinks
</term>
198 <listitem><para>Use symlinks for source archives. If set to true then source archives will
199 be symlinked when possible instead of copying. True is the default.
</para></listitem>
202 <varlistentry><term>http
</term>
203 <listitem><para>HTTP URIs; http::Proxy is the default http proxy to use. It is in the
204 standard form of
<literal>http://[[user][:pass]@]host[:port]/
</literal>. Per
205 host proxies can also be specified by using the form
206 <literal>http::Proxy::
<host
></literal> with the special keyword
<literal>DIRECT
</literal>
207 meaning to use no proxies. If no one of the above settings is specified,
208 <envar>http_proxy
</envar> environment variable
211 <para>Three settings are provided for cache control with HTTP/
1.1 compliant
212 proxy caches.
<literal>No-Cache
</literal> tells the proxy to not use its cached
213 response under any circumstances,
<literal>Max-Age
</literal> is sent only for
214 index files and tells the cache to refresh its object if it is older than
215 the given number of seconds. Debian updates its index files daily so the
216 default is
1 day.
<literal>No-Store
</literal> specifies that the cache should never
217 store this request, it is only set for archive files. This may be useful
218 to prevent polluting a proxy cache with very large .deb files. Note:
219 Squid
2.0.2 does not support any of these options.
</para>
221 <para>The option
<literal>timeout
</literal> sets the timeout timer used by the method,
222 this applies to all things including connection timeout and data timeout.
</para>
224 <para>One setting is provided to control the pipeline depth in cases where the
225 remote server is not RFC conforming or buggy (such as Squid
2.0.2)
226 <literal>Acquire::http::Pipeline-Depth
</literal> can be a value from
0 to
5
227 indicating how many outstanding requests APT should send. A value of
228 zero MUST be specified if the remote host does not properly linger
229 on TCP connections - otherwise data corruption will occur. Hosts which
230 require this are in violation of RFC
2068.
</para></listitem>
233 <varlistentry><term>https
</term>
234 <listitem><para>HTTPS URIs. Cache-control and proxy options are the same as for
235 <literal>http
</literal> method.
236 <literal>Pipeline-Depth
</literal> option is not supported yet.
</para>
238 <para><literal>CaInfo
</literal> suboption specifies place of file that
239 holds info about trusted certificates.
240 <literal><host
>::CaInfo
</literal> is corresponding per-host option.
241 <literal>Verify-Peer
</literal> boolean suboption determines whether verify
242 server's host certificate against trusted certificates or not.
243 <literal><host
>::Verify-Peer
</literal> is corresponding per-host option.
244 <literal>Verify-Host
</literal> boolean suboption determines whether verify
245 server's hostname or not.
246 <literal><host
>::Verify-Host
</literal> is corresponding per-host option.
247 <literal>SslCert
</literal> determines what certificate to use for client
248 authentication.
<literal><host
>::SslCert
</literal> is corresponding per-host option.
249 <literal>SslKey
</literal> determines what private key to use for client
250 authentication.
<literal><host
>::SslKey
</literal> is corresponding per-host option.
251 <literal>SslForceVersion
</literal> overrides default SSL version to use.
252 Can contain 'TLSv1' or 'SSLv3' string.
253 <literal><host
>::SslForceVersion
</literal> is corresponding per-host option.
254 </para></listitem></varlistentry>
256 <varlistentry><term>ftp
</term>
257 <listitem><para>FTP URIs; ftp::Proxy is the default ftp proxy to use. It is in the
258 standard form of
<literal>ftp://[[user][:pass]@]host[:port]/
</literal>. Per
259 host proxies can also be specified by using the form
260 <literal>ftp::Proxy::
<host
></literal> with the special keyword
<literal>DIRECT
</literal>
261 meaning to use no proxies. If no one of the above settings is specified,
262 <envar>ftp_proxy
</envar> environment variable
263 will be used. To use a ftp
264 proxy you will have to set the
<literal>ftp::ProxyLogin
</literal> script in the
265 configuration file. This entry specifies the commands to send to tell
266 the proxy server what to connect to. Please see
267 &configureindex; for an example of
268 how to do this. The substitution variables available are
269 <literal>$(PROXY_USER)
</literal> <literal>$(PROXY_PASS)
</literal> <literal>$(SITE_USER)
</literal>
270 <literal>$(SITE_PASS)
</literal> <literal>$(SITE)
</literal> and
<literal>$(SITE_PORT)
</literal>
271 Each is taken from it's respective URI component.
</para>
273 <para>The option
<literal>timeout
</literal> sets the timeout timer used by the method,
274 this applies to all things including connection timeout and data timeout.
</para>
276 <para>Several settings are provided to control passive mode. Generally it is
277 safe to leave passive mode on, it works in nearly every environment.
278 However some situations require that passive mode be disabled and port
279 mode ftp used instead. This can be done globally, for connections that
280 go through a proxy or for a specific host (See the sample config file
281 for examples).
</para>
283 <para>It is possible to proxy FTP over HTTP by setting the
<envar>ftp_proxy
</envar>
284 environment variable to a http url - see the discussion of the http method
285 above for syntax. You cannot set this in the configuration file and it is
286 not recommended to use FTP over HTTP due to its low efficiency.
</para>
288 <para>The setting
<literal>ForceExtended
</literal> controls the use of RFC2428
289 <literal>EPSV
</literal> and
<literal>EPRT
</literal> commands. The default is false, which means
290 these commands are only used if the control connection is IPv6. Setting this
291 to true forces their use even on IPv4 connections. Note that most FTP servers
292 do not support RFC2428.
</para></listitem>
295 <varlistentry><term>cdrom
</term>
296 <listitem><para>CDROM URIs; the only setting for CDROM URIs is the mount point,
297 <literal>cdrom::Mount
</literal> which must be the mount point for the CDROM drive
298 as specified in
<filename>/etc/fstab
</filename>. It is possible to provide
299 alternate mount and unmount commands if your mount point cannot be listed
300 in the fstab (such as an SMB mount and old mount packages). The syntax
301 is to put
<literallayout>"/cdrom/"::Mount
"foo";
</literallayout> within
302 the cdrom block. It is important to have the trailing slash. Unmount
303 commands can be specified using UMount.
</para></listitem>
306 <varlistentry><term>gpgv
</term>
307 <listitem><para>GPGV URIs; the only option for GPGV URIs is the option to pass additional parameters to gpgv.
308 <literal>gpgv::Options
</literal> Additional options passed to gpgv.
312 <varlistentry><term>CompressionTypes
</term>
313 <listitem><para>List of compression types which are understood by the acquire methods.
314 Files like
<filename>Packages
</filename> can be available in various compression formats.
315 Per default the acquire methods can decompress
<command>bzip2
</command>,
<command>lzma
</command>
316 and
<command>gzip
</command> compressed files, with this setting more formats can be added
317 on the fly or the used method can be changed. The syntax for this is:
318 <synopsis>Acquire::CompressionTypes::
<replaceable>FileExtension
</replaceable> "<replaceable>Methodname</replaceable>";
</synopsis>
319 </para><para>Also the
<literal>Order
</literal> subgroup can be used to define in which order
320 the acquire system will try to download the compressed files. The acquire system will try the first
321 and proceed with the next compression type in this list on error, so to prefer one over the other type
322 simple add the preferred type at first - not already added default types will be added at run time
323 to the end of the list, so e.g.
<synopsis>Acquire::CompressionTypes::Order:: "gz";
</synopsis> can
324 be used to prefer
<command>gzip
</command> compressed files over
<command>bzip2
</command> and
<command>lzma
</command>.
325 If
<command>lzma
</command> should be preferred over
<command>gzip
</command> and
<command>bzip2
</command> the
326 configure setting should look like this
<synopsis>Acquire::CompressionTypes::Order { "lzma"; "gz"; };
</synopsis>
327 It is not needed to add
<literal>bz2
</literal> explicit to the list as it will be added automatic.
</para>
328 <para>Note that at run time the
<literal>Dir::Bin::
<replaceable>Methodname
</replaceable></literal> will
329 be checked: If this setting exists the method will only be used if this file exists, e.g. for
330 the bzip2 method (the inbuilt) setting is
<literallayout>Dir::Bin::bzip2 "/bin/bzip2";
</literallayout>
331 Note also that list entries specified on the commandline will be added at the end of the list
332 specified in the configuration files, but before the default entries. To prefer a type in this case
333 over the ones specified in in the configuration files you can set the option direct - not in list style.
334 This will not override the defined list, it will only prefix the list with this type.
</para>
335 <para>While it is possible to add an empty compression type to the order list, but APT in its current
336 version doesn't understand it correctly and will display many warnings about not downloaded files -
337 these warnings are most of the time false negatives. Future versions will maybe include a way to
338 really prefer uncompressed files to support the usage of local mirrors.
</para></listitem>
344 <refsect1><title>Directories
</title>
346 <para>The
<literal>Dir::State
</literal> section has directories that pertain to local
347 state information.
<literal>lists
</literal> is the directory to place downloaded
348 package lists in and
<literal>status
</literal> is the name of the dpkg status file.
349 <literal>preferences
</literal> is the name of the APT preferences file.
350 <literal>Dir::State
</literal> contains the default directory to prefix on all sub
351 items if they do not start with
<filename>/
</filename> or
<filename>./
</filename>.
</para>
353 <para><literal>Dir::Cache
</literal> contains locations pertaining to local cache
354 information, such as the two package caches
<literal>srcpkgcache
</literal> and
355 <literal>pkgcache
</literal> as well as the location to place downloaded archives,
356 <literal>Dir::Cache::archives
</literal>. Generation of caches can be turned off
357 by setting their names to be blank. This will slow down startup but
358 save disk space. It is probably preferred to turn off the pkgcache rather
359 than the srcpkgcache. Like
<literal>Dir::State
</literal> the default
360 directory is contained in
<literal>Dir::Cache
</literal></para>
362 <para><literal>Dir::Etc
</literal> contains the location of configuration files,
363 <literal>sourcelist
</literal> gives the location of the sourcelist and
364 <literal>main
</literal> is the default configuration file (setting has no effect,
365 unless it is done from the config file specified by
366 <envar>APT_CONFIG
</envar>).
</para>
368 <para>The
<literal>Dir::Parts
</literal> setting reads in all the config fragments in
369 lexical order from the directory specified. After this is done then the
370 main config file is loaded.
</para>
372 <para>Binary programs are pointed to by
<literal>Dir::Bin
</literal>.
<literal>Dir::Bin::Methods
</literal>
373 specifies the location of the method handlers and
<literal>gzip
</literal>,
374 <literal>bzip2
</literal>,
<literal>lzma
</literal>,
375 <literal>dpkg
</literal>,
<literal>apt-get
</literal> <literal>dpkg-source
</literal>
376 <literal>dpkg-buildpackage
</literal> and
<literal>apt-cache
</literal> specify the location
377 of the respective programs.
</para>
380 The configuration item
<literal>RootDir
</literal> has a special
381 meaning. If set, all paths in
<literal>Dir::
</literal> will be
382 relative to
<literal>RootDir
</literal>,
<emphasis>even paths that
383 are specified absolutely
</emphasis>. So, for instance, if
384 <literal>RootDir
</literal> is set to
385 <filename>/tmp/staging
</filename> and
386 <literal>Dir::State::status
</literal> is set to
387 <filename>/var/lib/dpkg/status
</filename>, then the status file
389 <filename>/tmp/staging/var/lib/dpkg/status
</filename>.
393 <refsect1><title>APT in DSelect
</title>
395 When APT is used as a
&dselect; method several configuration directives
396 control the default behaviour. These are in the
<literal>DSelect
</literal> section.
</para>
399 <varlistentry><term>Clean
</term>
400 <listitem><para>Cache Clean mode; this value may be one of always, prompt, auto,
401 pre-auto and never. always and prompt will remove all packages from
402 the cache after upgrading, prompt (the default) does so conditionally.
403 auto removes only those packages which are no longer downloadable
404 (replaced with a new version for instance). pre-auto performs this
405 action before downloading new packages.
</para></listitem>
408 <varlistentry><term>options
</term>
409 <listitem><para>The contents of this variable is passed to &apt-get; as command line
410 options when it is run for the install phase.
</para></listitem>
413 <varlistentry><term>Updateoptions
</term>
414 <listitem><para>The contents of this variable is passed to &apt-get; as command line
415 options when it is run for the update phase.
</para></listitem>
418 <varlistentry><term>PromptAfterUpdate
</term>
419 <listitem><para>If true the [U]pdate operation in
&dselect; will always prompt to continue.
420 The default is to prompt only on error.
</para></listitem>
425 <refsect1><title>How APT calls dpkg
</title>
426 <para>Several configuration directives control how APT invokes
&dpkg;. These are
427 in the
<literal>DPkg
</literal> section.
</para>
430 <varlistentry><term>options
</term>
431 <listitem><para>This is a list of options to pass to dpkg. The options must be specified
432 using the list notation and each list item is passed as a single argument
433 to
&dpkg;.
</para></listitem>
436 <varlistentry><term>Pre-Invoke
</term><term>Post-Invoke
</term>
437 <listitem><para>This is a list of shell commands to run before/after invoking
&dpkg;.
438 Like
<literal>options
</literal> this must be specified in list notation. The
439 commands are invoked in order using
<filename>/bin/sh
</filename>, should any
440 fail APT will abort.
</para></listitem>
443 <varlistentry><term>Pre-Install-Pkgs
</term>
444 <listitem><para>This is a list of shell commands to run before invoking dpkg. Like
445 <literal>options
</literal> this must be specified in list notation. The commands
446 are invoked in order using
<filename>/bin/sh
</filename>, should any fail APT
447 will abort. APT will pass to the commands on standard input the
448 filenames of all .deb files it is going to install, one per line.
</para>
450 <para>Version
2 of this protocol dumps more information, including the
451 protocol version, the APT configuration space and the packages, files
452 and versions being changed. Version
2 is enabled by setting
453 <literal>DPkg::Tools::options::cmd::Version
</literal> to
2.
<literal>cmd
</literal> is a
454 command given to
<literal>Pre-Install-Pkgs
</literal>.
</para></listitem>
457 <varlistentry><term>Run-Directory
</term>
458 <listitem><para>APT chdirs to this directory before invoking dpkg, the default is
459 <filename>/
</filename>.
</para></listitem>
462 <varlistentry><term>Build-options
</term>
463 <listitem><para>These options are passed to &dpkg-buildpackage; when compiling packages,
464 the default is to disable signing and produce all binaries.
</para></listitem>
468 <refsect2><title>dpkg trigger usage
</title>
469 <para>APT can call dpkg in a way so it can make aggressive use of triggers over
470 multiply calls of dpkg. Without further options dpkg will use triggers only in between his
471 own run. Activating these options can therefore descrease the time needed to perform the
472 install / upgrade. Note that it is intended to activate these options per default in the
473 future, but as it changes the way apt calling dpkg drastical it needs a lot more testing.
474 <emphasis>These options are therefore currently experimental and should not be used in
475 productive environments.
</emphasis> Also it breaks the progress reporting so all frontends will
476 currently stay around half (or more) of the time in the
100% state while it actually configures
478 <para>If you have understand the current risks and problems with these options, but want
479 to help testing them create a new configuration file with the following three options activated.
480 Please report any bugs and problems you encounter and make sure to note that you have used
481 these options in the reports. Asking dpkg for help could also be useful for debugging proposes,
482 see e.g.
<command>dpkg --audit
</command>.
483 <literallayout>DPkg::NoTriggers "true";
484 DPkg::NoConfigure "true";
485 DPkg::ConfigurePending "true";
</literallayout>
489 <varlistentry><term>NoTriggers
</term>
490 <listitem><para>Add the no triggers flag to all dpkg calls (expect the ConfigurePending call).
491 See
&dpkg; if you are interested in what this actually means. In short: dpkg will not run the
492 triggers then this flag is present unless it is explicit called to do so in an extra call.
493 Note that this option exists (undocumented) also in older apt versions with a slightly different
494 meaning: Previously these option only append --no-triggers to the configure calls to dpkg -
495 now apt will add these flag also to the unpack and remove calls.
</para></listitem>
497 <varlistentry><term>NoConfigure
</term>
498 <listitem><para>Set this option to true will prevent apt to call explicit the configuration
499 for all packages. The packages will only be called to unpack (or remove), so dpkg can handle the
500 configuration process. Activating this option will implicit activate also the next option per
501 default as otherwise the system could end in an unconfigured status which could be unbootable!
504 <varlistentry><term>ConfigurePending
</term>
505 <listitem><para>If this option is set apt will call
<command>dpkg --configure --pending
</command>
506 to let dpkg handle all required configurations and triggers. This option is activated automatic
507 per default if
<literal>NoConfigure
</literal> is set, but deactivating could be useful
508 if you want to run APT multiple times in a row - e.g. in an installer. In this sceneries you should
509 deactivate this option in all but the last run.
</para></listitem>
516 <title>Periodic and Archives options
</title>
517 <para><literal>APT::Periodic
</literal> and
<literal>APT::Archives
</literal>
518 groups of options configure behavior of apt periodic updates, which is
519 done by
<literal>/etc/cron.daily/apt
</literal> script. See header of
520 this script for the brief documentation of these options.
525 <title>Debug options
</title>
527 Enabling options in the
<literal>Debug::
</literal> section will
528 cause debugging information to be sent to the standard error
529 stream of the program utilizing the
<literal>apt
</literal>
530 libraries, or enable special program modes that are primarily
531 useful for debugging the behavior of
<literal>apt
</literal>.
532 Most of these options are not interesting to a normal user, but a
538 <literal>Debug::pkgProblemResolver
</literal> enables output
539 about the decisions made by
540 <literal>dist-upgrade, upgrade, install, remove, purge
</literal>.
546 <literal>Debug::NoLocking
</literal> disables all file
547 locking. This can be used to run some operations (for
548 instance,
<literal>apt-get -s install
</literal>) as a
555 <literal>Debug::pkgDPkgPM
</literal> prints out the actual
556 command line each time that
<literal>apt
</literal> invokes
563 <literal>Debug::IdentCdrom
</literal> disables the inclusion
564 of statfs data in CDROM IDs.
<!-- TODO: provide a
565 motivating example, except I haven't a clue why you'd want
573 A full list of debugging options to apt follows.
578 <term><literal>Debug::Acquire::cdrom
</literal></term>
582 Print information related to accessing
583 <literal>cdrom://
</literal> sources.
589 <term><literal>Debug::Acquire::ftp
</literal></term>
593 Print information related to downloading packages using
600 <term><literal>Debug::Acquire::http
</literal></term>
604 Print information related to downloading packages using
611 <term><literal>Debug::Acquire::https
</literal></term>
615 Print information related to downloading packages using
622 <term><literal>Debug::Acquire::gpgv
</literal></term>
626 Print information related to verifying cryptographic
627 signatures using
<literal>gpg
</literal>.
633 <term><literal>Debug::aptcdrom
</literal></term>
637 Output information about the process of accessing
638 collections of packages stored on CD-ROMs.
644 <term><literal>Debug::BuildDeps
</literal></term>
647 Describes the process of resolving build-dependencies in
654 <term><literal>Debug::Hashes
</literal></term>
657 Output each cryptographic hash that is generated by the
658 <literal>apt
</literal> libraries.
664 <term><literal>Debug::IdentCDROM
</literal></term>
667 Do not include information from
<literal>statfs
</literal>,
668 namely the number of used and free blocks on the CD-ROM
669 filesystem, when generating an ID for a CD-ROM.
675 <term><literal>Debug::NoLocking
</literal></term>
678 Disable all file locking. For instance, this will allow
679 two instances of
<quote><literal>apt-get
680 update
</literal></quote> to run at the same time.
686 <term><literal>Debug::pkgAcquire
</literal></term>
690 Log when items are added to or removed from the global
697 <term><literal>Debug::pkgAcquire::Auth
</literal></term>
700 Output status messages and errors related to verifying
701 checksums and cryptographic signatures of downloaded files.
707 <term><literal>Debug::pkgAcquire::Diffs
</literal></term>
710 Output information about downloading and applying package
711 index list diffs, and errors relating to package index list
718 <term><literal>Debug::pkgAcquire::RRed
</literal></term>
722 Output information related to patching apt package lists
723 when downloading index diffs instead of full indices.
729 <term><literal>Debug::pkgAcquire::Worker
</literal></term>
733 Log all interactions with the sub-processes that actually
740 <term><literal>Debug::pkgAutoRemove
</literal></term>
744 Log events related to the automatically-installed status of
745 packages and to the removal of unused packages.
751 <term><literal>Debug::pkgDepCache::AutoInstall
</literal></term>
754 Generate debug messages describing which packages are being
755 automatically installed to resolve dependencies. This
756 corresponds to the initial auto-install pass performed in,
757 e.g.,
<literal>apt-get install
</literal>, and not to the
758 full
<literal>apt
</literal> dependency resolver; see
759 <literal>Debug::pkgProblemResolver
</literal> for that.
765 <term><literal>Debug::pkgDepCache::Marker
</literal></term>
768 Generate debug messages describing which package is marked
769 as keep/install/remove while the ProblemResolver does his work.
770 Each addition or deletion may trigger additional actions;
771 they are shown indented two additional space under the original entry.
772 The format for each line is
<literal>MarkKeep
</literal>,
773 <literal>MarkDelete
</literal> or
<literal>MarkInstall
</literal> followed by
774 <literal>package-name
<a.b.c -
> d.e.f | x.y.z
> (section)
</literal>
775 where
<literal>a.b.c
</literal> is the current version of the package,
776 <literal>d.e.f
</literal> is the version considered for installation and
777 <literal>x.y.z
</literal> is a newer version, but not considered for installation
778 (because of a low pin score). The later two can be omitted if there is none or if
779 it is the same version as the installed.
780 <literal>section
</literal> is the name of the section the package appears in.
785 <!-- Question: why doesn't this do anything? The code says it should. -->
787 <term><literal>Debug::pkgInitConfig
</literal></term>
790 Dump the default configuration to standard error on
797 <term><literal>Debug::pkgDPkgPM
</literal></term>
800 When invoking
&dpkg;, output the precise command line with
801 which it is being invoked, with arguments separated by a
802 single space character.
808 <term><literal>Debug::pkgDPkgProgressReporting
</literal></term>
811 Output all the data received from
&dpkg; on the status file
812 descriptor and any errors encountered while parsing it.
818 <term><literal>Debug::pkgOrderList
</literal></term>
822 Generate a trace of the algorithm that decides the order in
823 which
<literal>apt
</literal> should pass packages to
830 <term><literal>Debug::pkgPackageManager
</literal></term>
834 Output status messages tracing the steps performed when
841 <term><literal>Debug::pkgPolicy
</literal></term>
845 Output the priority of each package list on startup.
851 <term><literal>Debug::pkgProblemResolver
</literal></term>
855 Trace the execution of the dependency resolver (this
856 applies only to what happens when a complex dependency
857 problem is encountered).
863 <term><literal>Debug::pkgProblemResolver::ShowScores
</literal></term>
866 Display a list of all installed packages with their calculated score
867 used by the pkgProblemResolver. The description of the package
868 is the same as described in
<literal>Debug::pkgDepCache::Marker
</literal>
874 <term><literal>Debug::sourceList
</literal></term>
878 Print information about the vendors read from
879 <filename>/etc/apt/vendors.list
</filename>.
884 <!-- 2009/07/11 Currently used nowhere. The corresponding code
887 <term><literal>Debug::Vendor</literal></term>
891 Print information about each vendor.
899 <refsect1><title>Examples
</title>
900 <para>&configureindex; is a
901 configuration file showing example values for all possible
905 <refsect1><title>Files
</title>
911 <refsect1><title>See Also
</title>
912 <para>&apt-cache;, &apt-config;
<!-- ? reading apt.conf -->, &apt-preferences;.
</para>