Merge remote-tracking branch 'upstream/debian/sid' into feature/install-progress...
[ntk/apt.git] / doc / apt.conf.5.xml
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
5 <!ENTITY % aptent SYSTEM "apt.ent">
6 %aptent;
7
8 <!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent">
9 %aptverbatiment;
10
11 ]>
12
13 <refentry>
14
15 <refentryinfo>
16 &apt-author.jgunthorpe;
17 &apt-author.team;
18 <author>
19 &apt-name.dburrows;
20 <contrib>Initial documentation of Debug::*.</contrib>
21 <email>dburrows@debian.org</email>
22 </author>
23 &apt-email;
24 &apt-product;
25 <!-- The last update date -->
26 <date>2012-06-09T00:00:00Z</date>
27 </refentryinfo>
28
29 <refmeta>
30 <refentrytitle>apt.conf</refentrytitle>
31 <manvolnum>5</manvolnum>
32 <refmiscinfo class="manual">APT</refmiscinfo>
33 </refmeta>
34
35 <!-- Man page title -->
36 <refnamediv>
37 <refname>apt.conf</refname>
38 <refpurpose>Configuration file for APT</refpurpose>
39 </refnamediv>
40
41 <refsect1><title>Description</title>
42 <para><filename>/etc/apt/apt.conf</filename> is the main configuration
43 file shared by all the tools in the APT suite of tools, though it is by
44 no means the only place options can be set. The suite also shares a common
45 command line parser to provide a uniform environment.</para>
46
47 <orderedlist>
48 <para>When an APT tool starts up it will read the configuration files
49 in the following order:</para>
50 <listitem><para>the file specified by the <envar>APT_CONFIG</envar>
51 environment variable (if any)</para></listitem>
52 <listitem><para>all files in <literal>Dir::Etc::Parts</literal> in
53 alphanumeric ascending order which have either no or "<literal>conf</literal>"
54 as filename extension and which only contain alphanumeric,
55 hyphen (-), underscore (_) and period (.) characters.
56 Otherwise APT will print a notice that it has ignored a file, unless that
57 file matches a pattern in the <literal>Dir::Ignore-Files-Silently</literal>
58 configuration list - in which case it will be silently ignored.</para></listitem>
59 <listitem><para>the main configuration file specified by
60 <literal>Dir::Etc::main</literal></para></listitem>
61 <listitem><para>the command line options are applied to override the
62 configuration directives or to load even more configuration files.</para></listitem>
63 </orderedlist>
64 </refsect1>
65 <refsect1><title>Syntax</title>
66 <para>The configuration file is organized in a tree with options organized into
67 functional groups. Option specification is given with a double colon
68 notation; for instance <literal>APT::Get::Assume-Yes</literal> is an option within
69 the APT tool group, for the Get tool. Options do not inherit from their
70 parent groups.</para>
71
72 <para>Syntactically the configuration language is modeled after what the ISC tools
73 such as bind and dhcp use. Lines starting with
74 <literal>//</literal> are treated as comments (ignored), as well as all text
75 between <literal>/*</literal> and <literal>*/</literal>, just like C/C++ comments.
76 Each line is of the form
77 <literal>APT::Get::Assume-Yes "true";</literal>.
78 The quotation marks and trailing semicolon are required.
79 The value must be on one line, and there is no kind of string concatenation.
80 Values must not include backslashes or extra quotation marks.
81 Option names are made up of alphanumeric characters and the characters "/-:._+".
82 A new scope can be opened with curly braces, like this:</para>
83
84 <informalexample><programlisting>
85 APT {
86 Get {
87 Assume-Yes "true";
88 Fix-Broken "true";
89 };
90 };
91 </programlisting></informalexample>
92
93 <para>with newlines placed to make it more readable. Lists can be created by
94 opening a scope and including a single string enclosed in quotes followed by a
95 semicolon. Multiple entries can be included, separated by a semicolon.</para>
96
97 <informalexample><programlisting>
98 DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";};
99 </programlisting></informalexample>
100
101 <para>In general the sample configuration file &configureindex;
102 is a good guide for how it should look.</para>
103
104 <para>Case is not significant in names of configuration items, so in the
105 previous example you could use <literal>dpkg::pre-install-pkgs</literal>.</para>
106
107 <para>Names for the configuration items are optional if a list is defined as can be seen in
108 the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If you don't specify a name a
109 new entry will simply add a new option to the list. If you specify a name you can override
110 the option in the same way as any other option by reassigning a new value to the option.</para>
111
112 <para>Two special commands are defined: <literal>#include</literal> (which is
113 deprecated and not supported by alternative implementations) and
114 <literal>#clear</literal>. <literal>#include</literal> will include the
115 given file, unless the filename ends in a slash, in which case the whole
116 directory is included.
117 <literal>#clear</literal> is used to erase a part of the configuration tree. The
118 specified element and all its descendants are erased.
119 (Note that these lines also need to end with a semicolon.)</para>
120
121 <para>
122 The <literal>#clear</literal> command is the only way to delete a list or
123 a complete scope. Reopening a scope (or using the syntax described below
124 with an appended <literal>::</literal>) will <emphasis>not</emphasis>
125 override previously written entries. Options can only be overridden by
126 addressing a new value to them - lists and scopes can't be overridden,
127 only cleared.
128 </para>
129
130 <para>All of the APT tools take an -o option which allows an arbitrary configuration
131 directive to be specified on the command line. The syntax is a full option
132 name (<literal>APT::Get::Assume-Yes</literal> for instance) followed by an equals
133 sign then the new value of the option. To append a new element to a list, add a
134 trailing <literal>::</literal> to the name of the list.
135 (As you might suspect, the scope syntax can't be used on the command line.)</para>
136
137 <para>
138 Note that appending items to a list using <literal>::</literal> only works
139 for one item per line, and that you should not use it in combination with
140 the scope syntax (which adds <literal>::</literal> implicitly). Using both
141 syntaxes together will trigger a bug which some users unfortunately depend
142 on: an option with the unusual name "<literal>::</literal>" which acts
143 like every other option with a name. This introduces many problems; for
144 one thing, users who write multiple lines in this
145 <emphasis>wrong</emphasis> syntax in the hope of appending to a list will
146 achieve the opposite, as only the last assignment for this option
147 "<literal>::</literal>" will be used. Future versions of APT will raise
148 errors and stop working if they encounter this misuse, so please correct
149 such statements now while APT doesn't explicitly complain about them.
150 </para>
151 </refsect1>
152
153 <refsect1><title>The APT Group</title>
154 <para>This group of options controls general APT behavior as well as holding the
155 options for all of the tools.</para>
156
157 <variablelist>
158 <varlistentry><term><option>Architecture</option></term>
159 <listitem><para>System Architecture; sets the architecture to use when fetching files and
160 parsing package lists. The internal default is the architecture apt was
161 compiled for.</para></listitem>
162 </varlistentry>
163
164 <varlistentry><term><option>Architectures</option></term>
165 <listitem><para>
166 All Architectures the system supports. For instance, CPUs implementing
167 the <literal>amd64</literal> (also called <literal>x86-64</literal>)
168 instruction set are also able to execute binaries compiled for the
169 <literal>i386</literal> (<literal>x86</literal>) instruction set. This
170 list is used when fetching files and parsing package lists. The
171 initial default is always the system's native architecture
172 (<literal>APT::Architecture</literal>), and foreign architectures are
173 added to the default list when they are registered via
174 <command>dpkg --add-architecture</command>.
175 </para></listitem>
176 </varlistentry>
177
178 <varlistentry><term><option>Default-Release</option></term>
179 <listitem><para>Default release to install packages from if more than one
180 version is available. Contains release name, codename or release version. Examples: 'stable', 'testing',
181 'unstable', '&stable-codename;', '&testing-codename;', '4.0', '5.0*'. See also &apt-preferences;.</para></listitem>
182 </varlistentry>
183
184 <varlistentry><term><option>Ignore-Hold</option></term>
185 <listitem><para>Ignore held packages; this global option causes the problem resolver to
186 ignore held packages in its decision making.</para></listitem>
187 </varlistentry>
188
189 <varlistentry><term><option>Clean-Installed</option></term>
190 <listitem><para>Defaults to on. When turned on the autoclean feature will remove any packages
191 which can no longer be downloaded from the cache. If turned off then
192 packages that are locally installed are also excluded from cleaning - but
193 note that APT provides no direct means to reinstall them.</para></listitem>
194 </varlistentry>
195
196 <varlistentry><term><option>Immediate-Configure</option></term>
197 <listitem><para>
198 Defaults to on, which will cause APT to install essential and important
199 packages as soon as possible in an install/upgrade operation, in order
200 to limit the effect of a failing &dpkg; call. If this option is
201 disabled, APT treats an important package in the same way as an extra
202 package: between the unpacking of the package A and its configuration
203 there can be many other unpack or configuration calls for other
204 unrelated packages B, C etc. If these cause the &dpkg; call to fail
205 (e.g. because package B's maintainer scripts generate an error), this
206 results in a system state in which package A is unpacked but
207 unconfigured - so any package depending on A is now no longer
208 guaranteed to work, as its dependency on A is no longer satisfied.
209 </para><para>
210 The immediate configuration marker is also applied in the potentially
211 problematic case of circular dependencies, since a dependency with the
212 immediate flag is equivalent to a Pre-Dependency. In theory this allows
213 APT to recognise a situation in which it is unable to perform immediate
214 configuration, abort, and suggest to the user that the option should be
215 temporarily deactivated in order to allow the operation to proceed.
216 Note the use of the word "theory" here; in the real world this problem
217 has rarely been encountered, in non-stable distribution versions, and
218 was caused by wrong dependencies of the package in question or by a
219 system in an already broken state; so you should not blindly disable
220 this option, as the scenario mentioned above is not the only problem it
221 can help to prevent in the first place.
222 </para><para>
223 Before a big operation like <literal>dist-upgrade</literal> is run
224 with this option disabled you should try to explicitly
225 <literal>install</literal> the package APT is unable to configure
226 immediately; but please make sure you also report your problem to your
227 distribution and to the APT team with the buglink below, so they can
228 work on improving or correcting the upgrade process.
229 </para></listitem>
230 </varlistentry>
231
232 <varlistentry><term><option>Force-LoopBreak</option></term>
233 <listitem><para>
234 Never enable this option unless you <emphasis>really</emphasis> know
235 what you are doing. It permits APT to temporarily remove an essential
236 package to break a Conflicts/Conflicts or Conflicts/Pre-Depends loop
237 between two essential packages. <emphasis>Such a loop should never exist
238 and is a grave bug</emphasis>. This option will work if the essential
239 packages are not <command>tar</command>, <command>gzip</command>,
240 <command>libc</command>, <command>dpkg</command>, <command>dash</command>
241 or anything that those packages depend on.
242 </para></listitem>
243 </varlistentry>
244
245 <varlistentry><term><option>Cache-Start</option></term><term><option>Cache-Grow</option></term><term><option>Cache-Limit</option></term>
246 <listitem><para>APT uses since version 0.7.26 a resizable memory mapped cache file to store the available
247 information. <literal>Cache-Start</literal> acts as a hint of the size the cache will grow to,
248 and is therefore the amount of memory APT will request at startup. The default value is
249 20971520 bytes (~20 MB). Note that this amount of space needs to be available for APT;
250 otherwise it will likely fail ungracefully, so for memory restricted devices this value should
251 be lowered while on systems with a lot of configured sources it should be increased.
252 <literal>Cache-Grow</literal> defines in bytes with the default of 1048576 (~1 MB) how much
253 the cache size will be increased in the event the space defined by <literal>Cache-Start</literal>
254 is not enough. This value will be applied again and again until either the cache is big
255 enough to store all information or the size of the cache reaches the <literal>Cache-Limit</literal>.
256 The default of <literal>Cache-Limit</literal> is 0 which stands for no limit.
257 If <literal>Cache-Grow</literal> is set to 0 the automatic growth of the cache is disabled.
258 </para></listitem>
259 </varlistentry>
260
261 <varlistentry><term><option>Build-Essential</option></term>
262 <listitem><para>Defines which packages are considered essential build dependencies.</para></listitem>
263 </varlistentry>
264
265 <varlistentry><term><option>Get</option></term>
266 <listitem><para>The Get subsection controls the &apt-get; tool; please see its
267 documentation for more information about the options here.</para></listitem>
268 </varlistentry>
269
270 <varlistentry><term><option>Cache</option></term>
271 <listitem><para>The Cache subsection controls the &apt-cache; tool; please see its
272 documentation for more information about the options here.</para></listitem>
273 </varlistentry>
274
275 <varlistentry><term><option>CDROM</option></term>
276 <listitem><para>The CDROM subsection controls the &apt-cdrom; tool; please see its
277 documentation for more information about the options here.</para></listitem>
278 </varlistentry>
279 </variablelist>
280 </refsect1>
281
282 <refsect1><title>The Acquire Group</title>
283 <para>The <literal>Acquire</literal> group of options controls the
284 download of packages as well as the various "acquire methods" responsible
285 for the download itself (see also &sources-list;).</para>
286
287 <variablelist>
288 <varlistentry><term><option>Check-Valid-Until</option></term>
289 <listitem><para>
290 Security related option defaulting to true, as giving a Release file's
291 validation an expiration date prevents replay attacks over a long
292 timescale, and can also for example help users to identify mirrors
293 that are no longer updated - but the feature depends on the
294 correctness of the clock on the user system. Archive maintainers are
295 encouraged to create Release files with the
296 <literal>Valid-Until</literal> header, but if they don't or a
297 stricter value is desired the <literal>Max-ValidTime</literal>
298 option below can be used.
299 </para></listitem>
300 </varlistentry>
301
302 <varlistentry><term><option>Max-ValidTime</option></term>
303 <listitem><para>Maximum time (in seconds) after its creation (as indicated
304 by the <literal>Date</literal> header) that the <filename>Release</filename>
305 file should be considered valid.
306 If the Release file itself includes a <literal>Valid-Until</literal> header
307 the earlier date of the two is used as the expiration date.
308 The default value is <literal>0</literal> which stands for "valid forever".
309 Archive specific settings can be made by appending the label of the archive
310 to the option name.
311 </para></listitem>
312 </varlistentry>
313
314 <varlistentry><term><option>Min-ValidTime</option></term>
315 <listitem><para>Minimum time (in seconds) after its creation (as indicated
316 by the <literal>Date</literal> header) that the <filename>Release</filename>
317 file should be considered valid.
318 Use this if you need to use a seldom updated (local) mirror of a more
319 frequently updated archive with a <literal>Valid-Until</literal> header
320 instead of completely disabling the expiration date checking.
321 Archive specific settings can and should be used by appending the label of
322 the archive to the option name.
323 </para></listitem>
324 </varlistentry>
325
326 <varlistentry><term><option>PDiffs</option></term>
327 <listitem><para>Try to download deltas called <literal>PDiffs</literal> for
328 indexes (like <filename>Packages</filename> files) instead of downloading
329 whole ones. True by default.</para>
330 <para>Two sub-options to limit the use of PDiffs are also available:
331 <literal>FileLimit</literal> can be used to specify a maximum number of
332 PDiff files should be downloaded to update a file. <literal>SizeLimit</literal>
333 on the other hand is the maximum percentage of the size of all patches
334 compared to the size of the targeted file. If one of these limits is
335 exceeded the complete file is downloaded instead of the patches.
336 </para></listitem>
337 </varlistentry>
338
339 <varlistentry><term><option>Queue-Mode</option></term>
340 <listitem><para>Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</literal> or
341 <literal>access</literal> which determines how APT parallelizes outgoing
342 connections. <literal>host</literal> means that one connection per target host
343 will be opened, <literal>access</literal> means that one connection per URI type
344 will be opened.</para></listitem>
345 </varlistentry>
346
347 <varlistentry><term><option>Retries</option></term>
348 <listitem><para>Number of retries to perform. If this is non-zero APT will retry failed
349 files the given number of times.</para></listitem>
350 </varlistentry>
351
352 <varlistentry><term><option>Source-Symlinks</option></term>
353 <listitem><para>Use symlinks for source archives. If set to true then source archives will
354 be symlinked when possible instead of copying. True is the default.</para></listitem>
355 </varlistentry>
356
357 <varlistentry><term><option>http</option></term>
358 <listitem><para><literal>http::Proxy</literal> sets the default proxy to use for HTTP
359 URIs. It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</literal>.
360 Per host proxies can also be specified by using the form
361 <literal>http::Proxy::&lt;host&gt;</literal> with the special keyword <literal>DIRECT</literal>
362 meaning to use no proxies. If no one of the above settings is specified,
363 <envar>http_proxy</envar> environment variable
364 will be used.</para>
365
366 <para>Three settings are provided for cache control with HTTP/1.1 compliant
367 proxy caches.
368 <literal>No-Cache</literal> tells the proxy not to use its cached
369 response under any circumstances.
370 <literal>Max-Age</literal> sets the allowed maximum age (in seconds) of
371 an index file in the cache of the proxy.
372 <literal>No-Store</literal> specifies that the proxy should not store
373 the requested archive files in its cache, which can be used to prevent
374 the proxy from polluting its cache with (big) .deb files.</para>
375
376 <para>The option <literal>timeout</literal> sets the timeout timer used by the method;
377 this value applies to the connection as well as the data timeout.</para>
378
379 <para>The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to
380 enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e.g. on
381 high-latency connections. It specifies how many requests are sent in a pipeline.
382 Previous APT versions had a default of 10 for this setting, but the default value
383 is now 0 (= disabled) to avoid problems with the ever-growing amount of webservers
384 and proxies which choose to not conform to the HTTP/1.1 specification.</para>
385
386 <para><literal>Acquire::http::AllowRedirect</literal> controls whether APT will follow
387 redirects, which is enabled by default.</para>
388
389 <para>The used bandwidth can be limited with
390 <literal>Acquire::http::Dl-Limit</literal> which accepts integer
391 values in kilobytes per second. The default value is 0 which
392 deactivates the limit and tries to use all available bandwidth.
393 Note that this option implicitly disables downloading from
394 multiple servers at the same time.</para>
395
396 <para><literal>Acquire::http::User-Agent</literal> can be used to set a different
397 User-Agent for the http download method as some proxies allow access for clients
398 only if the client uses a known identifier.</para>
399
400 <para><literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to
401 specify a external command to discover the http proxy to use. Apt expects
402 the command to output the proxy on stdout in the style
403 <literal>http://proxy:port/</literal>. See the
404 &squid-deb-proxy-client; package for a example implementation that
405 uses avahi.</para>
406
407 </listitem>
408 </varlistentry>
409
410 <varlistentry><term><option>https</option></term>
411 <listitem><para>
412 The <literal>Cache-control</literal>, <literal>Timeout</literal>,
413 <literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and
414 <literal>proxy</literal> options work for HTTPS URIs in the same way
415 as for the <literal>http</literal> method, and default to the same
416 values if they are not explicitly set. The
417 <literal>Pipeline-Depth</literal> option is not yet supported.
418 </para>
419
420 <para><literal>CaInfo</literal> suboption specifies place of file that
421 holds info about trusted certificates.
422 <literal>&lt;host&gt;::CaInfo</literal> is the corresponding per-host option.
423 <literal>Verify-Peer</literal> boolean suboption determines whether or not the
424 server's host certificate should be verified against trusted certificates.
425 <literal>&lt;host&gt;::Verify-Peer</literal> is the corresponding per-host option.
426 <literal>Verify-Host</literal> boolean suboption determines whether or not the
427 server's hostname should be verified.
428 <literal>&lt;host&gt;::Verify-Host</literal> is the corresponding per-host option.
429 <literal>SslCert</literal> determines what certificate to use for client
430 authentication. <literal>&lt;host&gt;::SslCert</literal> is the corresponding per-host option.
431 <literal>SslKey</literal> determines what private key to use for client
432 authentication. <literal>&lt;host&gt;::SslKey</literal> is the corresponding per-host option.
433 <literal>SslForceVersion</literal> overrides default SSL version to use.
434 It can contain either of the strings '<literal>TLSv1</literal>' or
435 '<literal>SSLv3</literal>'.
436 <literal>&lt;host&gt;::SslForceVersion</literal> is the corresponding per-host option.
437 </para></listitem></varlistentry>
438
439 <varlistentry><term><option>ftp</option></term>
440 <listitem><para>
441 <literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs.
442 It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</literal>.
443 Per host proxies can also be specified by using the form
444 <literal>ftp::Proxy::&lt;host&gt;</literal> with the special keyword <literal>DIRECT</literal>
445 meaning to use no proxies. If no one of the above settings is specified,
446 <envar>ftp_proxy</envar> environment variable
447 will be used. To use an FTP
448 proxy you will have to set the <literal>ftp::ProxyLogin</literal> script in the
449 configuration file. This entry specifies the commands to send to tell
450 the proxy server what to connect to. Please see
451 &configureindex; for an example of
452 how to do this. The substitution variables representing the corresponding
453 URI component are <literal>$(PROXY_USER)</literal>,
454 <literal>$(PROXY_PASS)</literal>, <literal>$(SITE_USER)</literal>,
455 <literal>$(SITE_PASS)</literal>, <literal>$(SITE)</literal> and
456 <literal>$(SITE_PORT)</literal>.</para>
457
458 <para>The option <literal>timeout</literal> sets the timeout timer used by the method;
459 this value applies to the connection as well as the data timeout.</para>
460
461 <para>Several settings are provided to control passive mode. Generally it is
462 safe to leave passive mode on; it works in nearly every environment.
463 However, some situations require that passive mode be disabled and port
464 mode FTP used instead. This can be done globally or for connections that
465 go through a proxy or for a specific host (see the sample config file
466 for examples).</para>
467
468 <para>It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</envar>
469 environment variable to an HTTP URL - see the discussion of the http method
470 above for syntax. You cannot set this in the configuration file and it is
471 not recommended to use FTP over HTTP due to its low efficiency.</para>
472
473 <para>The setting <literal>ForceExtended</literal> controls the use of RFC2428
474 <literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is false, which means
475 these commands are only used if the control connection is IPv6. Setting this
476 to true forces their use even on IPv4 connections. Note that most FTP servers
477 do not support RFC2428.</para></listitem>
478 </varlistentry>
479
480 <varlistentry><term><option>cdrom</option></term>
481 <listitem><para>
482 For URIs using the <literal>cdrom</literal> method, the only configurable
483 option is the mount point, <literal>cdrom::Mount</literal>, which must be
484 the mount point for the CD-ROM (or DVD, or whatever) drive as specified in
485 <filename>/etc/fstab</filename>. It is possible to provide alternate mount
486 and unmount commands if your mount point cannot be listed in the fstab.
487 The syntax is to put <literallayout>/cdrom/::Mount "foo";</literallayout> within
488 the <literal>cdrom</literal> block. It is important to have the trailing slash.
489 Unmount commands can be specified using UMount.
490 </para></listitem>
491 </varlistentry>
492
493 <varlistentry><term><option>gpgv</option></term>
494 <listitem><para>
495 For GPGV URIs the only configurable option is <literal>gpgv::Options</literal>,
496 which passes additional parameters to gpgv.
497 </para></listitem>
498 </varlistentry>
499
500 <varlistentry><term><option>CompressionTypes</option></term>
501 <listitem><para>List of compression types which are understood by the acquire methods.
502 Files like <filename>Packages</filename> can be available in various compression formats.
503 By default the acquire methods can decompress <command>bzip2</command>, <command>lzma</command>
504 and <command>gzip</command> compressed files; with this setting more formats can be added
505 on the fly or the used method can be changed. The syntax for this is:
506 <synopsis>Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> "<replaceable>Methodname</replaceable>";</synopsis>
507 </para><para>Also, the <literal>Order</literal> subgroup can be used to define in which order
508 the acquire system will try to download the compressed files. The acquire system will try the first
509 and proceed with the next compression type in this list on error, so to prefer one over the other type
510 simply add the preferred type first - default types not already added will be implicitly appended
511 to the end of the list, so e.g. <synopsis>Acquire::CompressionTypes::Order:: "gz";</synopsis> can
512 be used to prefer <command>gzip</command> compressed files over <command>bzip2</command> and <command>lzma</command>.
513 If <command>lzma</command> should be preferred over <command>gzip</command> and <command>bzip2</command> the
514 configure setting should look like this: <synopsis>Acquire::CompressionTypes::Order { "lzma"; "gz"; };</synopsis>
515 It is not needed to add <literal>bz2</literal> to the list explicitly as it will be added automatically.</para>
516 <para>Note that the
517 <literal>Dir::Bin::<replaceable>Methodname</replaceable></literal>
518 will be checked at run time. If this option has been set, the
519 method will only be used if this file exists; e.g. for the
520 <literal>bzip2</literal> method (the inbuilt) setting is:
521 <literallayout>Dir::Bin::bzip2 "/bin/bzip2";</literallayout>
522 Note also that list entries specified on the command line will be added at the end of the list
523 specified in the configuration files, but before the default entries. To prefer a type in this case
524 over the ones specified in the configuration files you can set the option direct - not in list style.
525 This will not override the defined list; it will only prefix the list with this type.</para>
526 <para>The special type <literal>uncompressed</literal> can be used to give uncompressed files a
527 preference, but note that most archives don't provide uncompressed files so this is mostly only
528 useable for local mirrors.</para></listitem>
529 </varlistentry>
530
531 <varlistentry><term><option>GzipIndexes</option></term>
532 <listitem><para>
533 When downloading <literal>gzip</literal> compressed indexes (Packages, Sources, or
534 Translations), keep them gzip compressed locally instead of unpacking
535 them. This saves quite a lot of disk space at the expense of more CPU
536 requirements when building the local package caches. False by default.
537 </para></listitem>
538 </varlistentry>
539
540 <varlistentry><term><option>Languages</option></term>
541 <listitem><para>The Languages subsection controls which <filename>Translation</filename> files are downloaded
542 and in which order APT tries to display the description-translations. APT will try to display the first
543 available description in the language which is listed first. Languages can be defined with their
544 short or long language codes. Note that not all archives provide <filename>Translation</filename>
545 files for every language - the long language codes are especially rare.</para>
546 <para>The default list includes "environment" and "en". "<literal>environment</literal>" has a special meaning here:
547 it will be replaced at runtime with the language codes extracted from the <literal>LC_MESSAGES</literal> environment variable.
548 It will also ensure that these codes are not included twice in the list. If <literal>LC_MESSAGES</literal>
549 is set to "C" only the <filename>Translation-en</filename> file (if available) will be used.
550 To force APT to use no Translation file use the setting <literal>Acquire::Languages=none</literal>. "<literal>none</literal>"
551 is another special meaning code which will stop the search for a suitable <filename>Translation</filename> file.
552 This tells APT to download these translations too, without actually
553 using them unless the environment specifies the languages. So the
554 following example configuration will result in the order "en, de" in an
555 English locale or "de, en" in a German one. Note that "fr" is
556 downloaded, but not used unless APT is used in a French locale (where
557 the order would be "fr, de, en").
558 <programlisting>Acquire::Languages { "environment"; "de"; "en"; "none"; "fr"; };</programlisting></para>
559 <para>Note: To prevent problems resulting from APT being executed in different environments
560 (e.g. by different users or by other programs) all Translation files which are found in
561 <filename>/var/lib/apt/lists/</filename> will be added to the end of the list
562 (after an implicit "<literal>none</literal>").</para>
563 </listitem>
564 </varlistentry>
565
566 <varlistentry><term><option>ForceIPv4</option></term>
567 <listitem><para>
568 When downloading, force to use only the IPv4 protocol.
569 </para></listitem>
570 </varlistentry>
571
572 <varlistentry><term><option>ForceIPv6</option></term>
573 <listitem><para>
574 When downloading, force to use only the IPv6 protocol.
575 </para></listitem>
576 </varlistentry>
577
578 </variablelist>
579 </refsect1>
580
581 <refsect1><title>Directories</title>
582
583 <para>The <literal>Dir::State</literal> section has directories that pertain to local
584 state information. <literal>lists</literal> is the directory to place downloaded
585 package lists in and <literal>status</literal> is the name of the &dpkg; status file.
586 <literal>preferences</literal> is the name of the APT <filename>preferences</filename> file.
587 <literal>Dir::State</literal> contains the default directory to prefix on all
588 sub-items if they do not start with <filename>/</filename> or <filename>./</filename>.</para>
589
590 <para><literal>Dir::Cache</literal> contains locations pertaining to local cache
591 information, such as the two package caches <literal>srcpkgcache</literal> and
592 <literal>pkgcache</literal> as well as the location to place downloaded archives,
593 <literal>Dir::Cache::archives</literal>. Generation of caches can be turned off
594 by setting their names to the empty string. This will slow down startup but
595 save disk space. It is probably preferable to turn off the pkgcache rather
596 than the srcpkgcache. Like <literal>Dir::State</literal> the default
597 directory is contained in <literal>Dir::Cache</literal></para>
598
599 <para><literal>Dir::Etc</literal> contains the location of configuration files,
600 <literal>sourcelist</literal> gives the location of the sourcelist and
601 <literal>main</literal> is the default configuration file (setting has no effect,
602 unless it is done from the config file specified by
603 <envar>APT_CONFIG</envar>).</para>
604
605 <para>The <literal>Dir::Parts</literal> setting reads in all the config fragments in
606 lexical order from the directory specified. After this is done then the
607 main config file is loaded.</para>
608
609 <para>Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::Bin::Methods</literal>
610 specifies the location of the method handlers and <literal>gzip</literal>,
611 <literal>bzip2</literal>, <literal>lzma</literal>,
612 <literal>dpkg</literal>, <literal>apt-get</literal> <literal>dpkg-source</literal>
613 <literal>dpkg-buildpackage</literal> and <literal>apt-cache</literal> specify the location
614 of the respective programs.</para>
615
616 <para>
617 The configuration item <literal>RootDir</literal> has a special
618 meaning. If set, all paths in <literal>Dir::</literal> will be
619 relative to <literal>RootDir</literal>, <emphasis>even paths that
620 are specified absolutely</emphasis>. So, for instance, if
621 <literal>RootDir</literal> is set to
622 <filename>/tmp/staging</filename> and
623 <literal>Dir::State::status</literal> is set to
624 <filename>/var/lib/dpkg/status</filename>, then the status file
625 will be looked up in
626 <filename>/tmp/staging/var/lib/dpkg/status</filename>.
627 </para>
628
629 <para>
630 The <literal>Ignore-Files-Silently</literal> list can be used to specify
631 which files APT should silently ignore while parsing the files in the
632 fragment directories. Per default a file which end with <literal>.disabled</literal>,
633 <literal>~</literal>, <literal>.bak</literal> or <literal>.dpkg-[a-z]+</literal>
634 is silently ignored. As seen in the last default value these patterns can use regular
635 expression syntax.
636 </para>
637 </refsect1>
638
639 <refsect1><title>APT in DSelect</title>
640 <para>
641 When APT is used as a &dselect; method several configuration directives
642 control the default behavior. These are in the <literal>DSelect</literal> section.</para>
643
644 <variablelist>
645 <varlistentry><term><option>Clean</option></term>
646 <listitem><para>Cache Clean mode; this value may be one of
647 <literal>always</literal>, <literal>prompt</literal>,
648 <literal>auto</literal>, <literal>pre-auto</literal> and
649 <literal>never</literal>.
650 <literal>always</literal> and <literal>prompt</literal> will remove
651 all packages from the cache after upgrading, <literal>prompt</literal>
652 (the default) does so conditionally.
653 <literal>auto</literal> removes only those packages which are no longer
654 downloadable (replaced with a new version for instance).
655 <literal>pre-auto</literal> performs this action before downloading
656 new packages.</para></listitem>
657 </varlistentry>
658
659 <varlistentry><term><option>options</option></term>
660 <listitem><para>The contents of this variable are passed to &apt-get; as command line
661 options when it is run for the install phase.</para></listitem>
662 </varlistentry>
663
664 <varlistentry><term><option>Updateoptions</option></term>
665 <listitem><para>The contents of this variable are passed to &apt-get; as command line
666 options when it is run for the update phase.</para></listitem>
667 </varlistentry>
668
669 <varlistentry><term><option>PromptAfterUpdate</option></term>
670 <listitem><para>If true the [U]pdate operation in &dselect; will always prompt to continue.
671 The default is to prompt only on error.</para></listitem>
672 </varlistentry>
673 </variablelist>
674 </refsect1>
675
676 <refsect1><title>How APT calls &dpkg;</title>
677 <para>Several configuration directives control how APT invokes &dpkg;. These are
678 in the <literal>DPkg</literal> section.</para>
679
680 <variablelist>
681 <varlistentry><term><option>options</option></term>
682 <listitem><para>This is a list of options to pass to &dpkg;. The options must be specified
683 using the list notation and each list item is passed as a single argument
684 to &dpkg;.</para></listitem>
685 </varlistentry>
686
687 <varlistentry><term><option>Pre-Invoke</option></term><term><option>Post-Invoke</option></term>
688 <listitem><para>This is a list of shell commands to run before/after invoking &dpkg;.
689 Like <literal>options</literal> this must be specified in list notation. The
690 commands are invoked in order using <filename>/bin/sh</filename>; should any
691 fail APT will abort.</para></listitem>
692 </varlistentry>
693
694 <varlistentry><term><option>Pre-Install-Pkgs</option></term>
695 <listitem><para>This is a list of shell commands to run before invoking &dpkg;. Like
696 <literal>options</literal> this must be specified in list notation. The commands
697 are invoked in order using <filename>/bin/sh</filename>; should any fail APT
698 will abort. APT will pass the filenames of all .deb files it is going to
699 install to the commands, one per line on the requested file descriptor, defaulting
700 to standard input.</para>
701
702 <para>Version 2 of this protocol dumps more information, including the
703 protocol version, the APT configuration space and the packages, files
704 and versions being changed. Version 3 adds the architecture and <literal>MultiArch</literal>
705 flag to each version being dumped.</para>
706
707 <para>The version of the protocol to be used for the command
708 <literal><replaceable>cmd</replaceable></literal> can be chosen by setting
709 <literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::Version</literal>
710 accordingly, the default being version 1. If APT isn't supporting the requested
711 version it will send the information in the highest version it has support for instead.
712 </para>
713
714 <para>The file descriptor to be used to send the information can be requested with
715 <literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</literal>
716 which defaults to <literal>0</literal> for standard input and is available since
717 version 0.9.11. Support for the option can be detected by looking for the environment
718 variable <envar>APT_HOOK_INFO_FD</envar> which contains the number of the used
719 file descriptor as a confirmation.</para>
720 </listitem>
721 </varlistentry>
722
723 <varlistentry><term><option>Run-Directory</option></term>
724 <listitem><para>APT chdirs to this directory before invoking &dpkg;, the default is
725 <filename>/</filename>.</para></listitem>
726 </varlistentry>
727
728 <varlistentry><term><option>Build-options</option></term>
729 <listitem><para>These options are passed to &dpkg-buildpackage; when compiling packages;
730 the default is to disable signing and produce all binaries.</para></listitem>
731 </varlistentry>
732 </variablelist>
733
734 <refsect2><title>dpkg trigger usage (and related options)</title>
735 <para>APT can call &dpkg; in such a way as to let it make aggressive use of triggers over
736 multiple calls of &dpkg;. Without further options &dpkg; will use triggers once each time it runs.
737 Activating these options can therefore decrease the time needed to perform the
738 install or upgrade. Note that it is intended to activate these options per default in the
739 future, but as it drastically changes the way APT calls &dpkg; it needs a lot more testing.
740 <emphasis>These options are therefore currently experimental and should not be used in
741 production environments.</emphasis> It also breaks progress reporting such that all front-ends will
742 currently stay around half (or more) of the time in the 100% state while it actually configures
743 all packages.</para>
744 <para>Note that it is not guaranteed that APT will support these options or that these options will
745 not cause (big) trouble in the future. If you have understand the current risks and problems with
746 these options, but are brave enough to help testing them, create a new configuration file and test a
747 combination of options. Please report any bugs, problems and improvements you encounter and make sure
748 to note which options you have used in your reports. Asking &dpkg; for help could also be useful for
749 debugging proposes, see e.g. <command>dpkg --audit</command>. A defensive option combination would be
750 <literallayout>DPkg::NoTriggers "true";
751 PackageManager::Configure "smart";
752 DPkg::ConfigurePending "true";
753 DPkg::TriggersPending "true";</literallayout></para>
754
755 <variablelist>
756 <varlistentry><term><option>DPkg::NoTriggers</option></term>
757 <listitem><para>Add the no triggers flag to all &dpkg; calls (except the ConfigurePending call).
758 See &dpkg; if you are interested in what this actually means. In short: &dpkg; will not run the
759 triggers when this flag is present unless it is explicitly called to do so in an extra call.
760 Note that this option exists (undocumented) also in older APT versions with a slightly different
761 meaning: Previously these option only append --no-triggers to the configure calls to &dpkg; -
762 now APT will also add this flag to the unpack and remove calls.</para></listitem>
763 </varlistentry>
764 <varlistentry><term><option>PackageManager::Configure</option></term>
765 <listitem><para>Valid values are "<literal>all</literal>",
766 "<literal>smart</literal>" and "<literal>no</literal>".
767 The default value is "<literal>all</literal>", which causes APT to
768 configure all packages. The "<literal>smart</literal>" way is to
769 configure only packages which need to be configured before another
770 package can be unpacked (Pre-Depends), and let the rest be configured
771 by &dpkg; with a call generated by the ConfigurePending option (see
772 below). On the other hand, "<literal>no</literal>" will not configure
773 anything, and totally relies on &dpkg; for configuration (which at the
774 moment will fail if a Pre-Depends is encountered). Setting this option
775 to any value other than <literal>all</literal> will implicitly also
776 activate the next option by default, as otherwise the system could end
777 in an unconfigured and potentially unbootable state.</para></listitem>
778 </varlistentry>
779 <varlistentry><term><option>DPkg::ConfigurePending</option></term>
780 <listitem><para>If this option is set APT will call <command>dpkg --configure --pending</command>
781 to let &dpkg; handle all required configurations and triggers. This option is activated automatically
782 per default if the previous option is not set to <literal>all</literal>, but deactivating it could be useful
783 if you want to run APT multiple times in a row - e.g. in an installer. In these sceneries you could
784 deactivate this option in all but the last run.</para></listitem>
785 </varlistentry>
786 <varlistentry><term><option>DPkg::TriggersPending</option></term>
787 <listitem><para>Useful for the <literal>smart</literal> configuration as a package which has pending
788 triggers is not considered as <literal>installed</literal>, and &dpkg; treats them as <literal>unpacked</literal>
789 currently which is a showstopper for Pre-Dependencies (see debbugs #526774). Note that this will
790 process all triggers, not only the triggers needed to configure this package.</para></listitem>
791 </varlistentry>
792 <varlistentry><term><option>OrderList::Score::Immediate</option></term>
793 <listitem><para>Essential packages (and their dependencies) should be configured immediately
794 after unpacking. It is a good idea to do this quite early in the upgrade process as these
795 configure calls also currently require <literal>DPkg::TriggersPending</literal> which
796 will run quite a few triggers (which may not be needed). Essentials get per default a high score
797 but the immediate flag is relatively low (a package which has a Pre-Depends is rated higher).
798 These option and the others in the same group can be used to change the scoring. The following
799 example shows the settings with their default values.
800 <literallayout>OrderList::Score {
801 Delete 500;
802 Essential 200;
803 Immediate 10;
804 PreDepends 50;
805 };</literallayout>
806 </para></listitem>
807 </varlistentry>
808 </variablelist>
809 </refsect2>
810 </refsect1>
811
812 <refsect1>
813 <title>Periodic and Archives options</title>
814 <para><literal>APT::Periodic</literal> and <literal>APT::Archives</literal>
815 groups of options configure behavior of apt periodic updates, which is
816 done by the <literal>/etc/cron.daily/apt</literal> script. See the top of
817 this script for the brief documentation of these options.
818 </para>
819 </refsect1>
820
821 <refsect1>
822 <title>Debug options</title>
823 <para>
824 Enabling options in the <literal>Debug::</literal> section will
825 cause debugging information to be sent to the standard error
826 stream of the program utilizing the <literal>apt</literal>
827 libraries, or enable special program modes that are primarily
828 useful for debugging the behavior of <literal>apt</literal>.
829 Most of these options are not interesting to a normal user, but a
830 few may be:
831
832 <itemizedlist>
833 <listitem>
834 <para>
835 <literal>Debug::pkgProblemResolver</literal> enables output
836 about the decisions made by
837 <literal>dist-upgrade, upgrade, install, remove, purge</literal>.
838 </para>
839 </listitem>
840
841 <listitem>
842 <para>
843 <literal>Debug::NoLocking</literal> disables all file
844 locking. This can be used to run some operations (for
845 instance, <literal>apt-get -s install</literal>) as a
846 non-root user.
847 </para>
848 </listitem>
849
850 <listitem>
851 <para>
852 <literal>Debug::pkgDPkgPM</literal> prints out the actual
853 command line each time that <literal>apt</literal> invokes
854 &dpkg;.
855 </para>
856 </listitem>
857
858 <listitem>
859 <para>
860 <literal>Debug::IdentCdrom</literal> disables the inclusion
861 of statfs data in CD-ROM IDs. <!-- TODO: provide a
862 motivating example, except I haven't a clue why you'd want
863 to do this. -->
864 </para>
865 </listitem>
866 </itemizedlist>
867 </para>
868
869 <para>
870 A full list of debugging options to apt follows.
871 </para>
872
873 <variablelist>
874 <varlistentry>
875 <term><option>Debug::Acquire::cdrom</option></term>
876
877 <listitem>
878 <para>
879 Print information related to accessing
880 <literal>cdrom://</literal> sources.
881 </para>
882 </listitem>
883 </varlistentry>
884
885 <varlistentry>
886 <term><option>Debug::Acquire::ftp</option></term>
887
888 <listitem>
889 <para>
890 Print information related to downloading packages using
891 FTP.
892 </para>
893 </listitem>
894 </varlistentry>
895
896 <varlistentry>
897 <term><option>Debug::Acquire::http</option></term>
898
899 <listitem>
900 <para>
901 Print information related to downloading packages using
902 HTTP.
903 </para>
904 </listitem>
905 </varlistentry>
906
907 <varlistentry>
908 <term><option>Debug::Acquire::https</option></term>
909
910 <listitem>
911 <para>
912 Print information related to downloading packages using
913 HTTPS.
914 </para>
915 </listitem>
916 </varlistentry>
917
918 <varlistentry>
919 <term><option>Debug::Acquire::gpgv</option></term>
920
921 <listitem>
922 <para>
923 Print information related to verifying cryptographic
924 signatures using <literal>gpg</literal>.
925 </para>
926 </listitem>
927 </varlistentry>
928
929 <varlistentry>
930 <term><option>Debug::aptcdrom</option></term>
931
932 <listitem>
933 <para>
934 Output information about the process of accessing
935 collections of packages stored on CD-ROMs.
936 </para>
937 </listitem>
938 </varlistentry>
939
940 <varlistentry>
941 <term><option>Debug::BuildDeps</option></term>
942 <listitem>
943 <para>
944 Describes the process of resolving build-dependencies in
945 &apt-get;.
946 </para>
947 </listitem>
948 </varlistentry>
949
950 <varlistentry>
951 <term><option>Debug::Hashes</option></term>
952 <listitem>
953 <para>
954 Output each cryptographic hash that is generated by the
955 <literal>apt</literal> libraries.
956 </para>
957 </listitem>
958 </varlistentry>
959
960 <varlistentry>
961 <term><option>Debug::IdentCDROM</option></term>
962 <listitem>
963 <para>
964 Do not include information from <literal>statfs</literal>,
965 namely the number of used and free blocks on the CD-ROM
966 filesystem, when generating an ID for a CD-ROM.
967 </para>
968 </listitem>
969 </varlistentry>
970
971 <varlistentry>
972 <term><option>Debug::NoLocking</option></term>
973 <listitem>
974 <para>
975 Disable all file locking. For instance, this will allow
976 two instances of <quote><literal>apt-get
977 update</literal></quote> to run at the same time.
978 </para>
979 </listitem>
980 </varlistentry>
981
982 <varlistentry>
983 <term><option>Debug::pkgAcquire</option></term>
984
985 <listitem>
986 <para>
987 Log when items are added to or removed from the global
988 download queue.
989 </para>
990 </listitem>
991 </varlistentry>
992
993 <varlistentry>
994 <term><option>Debug::pkgAcquire::Auth</option></term>
995 <listitem>
996 <para>
997 Output status messages and errors related to verifying
998 checksums and cryptographic signatures of downloaded files.
999 </para>
1000 </listitem>
1001 </varlistentry>
1002
1003 <varlistentry>
1004 <term><option>Debug::pkgAcquire::Diffs</option></term>
1005 <listitem>
1006 <para>
1007 Output information about downloading and applying package
1008 index list diffs, and errors relating to package index list
1009 diffs.
1010 </para>
1011 </listitem>
1012 </varlistentry>
1013
1014 <varlistentry>
1015 <term><option>Debug::pkgAcquire::RRed</option></term>
1016
1017 <listitem>
1018 <para>
1019 Output information related to patching apt package lists
1020 when downloading index diffs instead of full indices.
1021 </para>
1022 </listitem>
1023 </varlistentry>
1024
1025 <varlistentry>
1026 <term><option>Debug::pkgAcquire::Worker</option></term>
1027
1028 <listitem>
1029 <para>
1030 Log all interactions with the sub-processes that actually
1031 perform downloads.
1032 </para>
1033 </listitem>
1034 </varlistentry>
1035
1036 <varlistentry>
1037 <term><option>Debug::pkgAutoRemove</option></term>
1038
1039 <listitem>
1040 <para>
1041 Log events related to the automatically-installed status of
1042 packages and to the removal of unused packages.
1043 </para>
1044 </listitem>
1045 </varlistentry>
1046
1047 <varlistentry>
1048 <term><option>Debug::pkgDepCache::AutoInstall</option></term>
1049 <listitem>
1050 <para>
1051 Generate debug messages describing which packages are being
1052 automatically installed to resolve dependencies. This
1053 corresponds to the initial auto-install pass performed in,
1054 e.g., <literal>apt-get install</literal>, and not to the
1055 full <literal>apt</literal> dependency resolver; see
1056 <literal>Debug::pkgProblemResolver</literal> for that.
1057 </para>
1058 </listitem>
1059 </varlistentry>
1060
1061 <varlistentry>
1062 <term><option>Debug::pkgDepCache::Marker</option></term>
1063 <listitem>
1064 <para>
1065 Generate debug messages describing which packages are marked
1066 as keep/install/remove while the ProblemResolver does his work.
1067 Each addition or deletion may trigger additional actions;
1068 they are shown indented two additional spaces under the original entry.
1069 The format for each line is <literal>MarkKeep</literal>,
1070 <literal>MarkDelete</literal> or <literal>MarkInstall</literal> followed by
1071 <literal>package-name &lt;a.b.c -&gt; d.e.f | x.y.z&gt; (section)</literal>
1072 where <literal>a.b.c</literal> is the current version of the package,
1073 <literal>d.e.f</literal> is the version considered for installation and
1074 <literal>x.y.z</literal> is a newer version, but not considered for installation
1075 (because of a low pin score). The later two can be omitted if there is none or if
1076 it is the same as the installed version.
1077 <literal>section</literal> is the name of the section the package appears in.
1078 </para>
1079 </listitem>
1080 </varlistentry>
1081
1082 <varlistentry>
1083 <term><option>Debug::pkgDPkgPM</option></term>
1084 <listitem>
1085 <para>
1086 When invoking &dpkg;, output the precise command line with
1087 which it is being invoked, with arguments separated by a
1088 single space character.
1089 </para>
1090 </listitem>
1091 </varlistentry>
1092
1093 <varlistentry>
1094 <term><option>Debug::pkgDPkgProgressReporting</option></term>
1095 <listitem>
1096 <para>
1097 Output all the data received from &dpkg; on the status file
1098 descriptor and any errors encountered while parsing it.
1099 </para>
1100 </listitem>
1101 </varlistentry>
1102
1103 <varlistentry>
1104 <term><option>Debug::pkgOrderList</option></term>
1105
1106 <listitem>
1107 <para>
1108 Generate a trace of the algorithm that decides the order in
1109 which <literal>apt</literal> should pass packages to
1110 &dpkg;.
1111 </para>
1112 </listitem>
1113 </varlistentry>
1114
1115 <varlistentry>
1116 <term><option>Debug::pkgPackageManager</option></term>
1117
1118 <listitem>
1119 <para>
1120 Output status messages tracing the steps performed when
1121 invoking &dpkg;.
1122 </para>
1123 </listitem>
1124 </varlistentry>
1125
1126 <varlistentry>
1127 <term><option>Debug::pkgPolicy</option></term>
1128
1129 <listitem>
1130 <para>
1131 Output the priority of each package list on startup.
1132 </para>
1133 </listitem>
1134 </varlistentry>
1135
1136 <varlistentry>
1137 <term><option>Debug::pkgProblemResolver</option></term>
1138
1139 <listitem>
1140 <para>
1141 Trace the execution of the dependency resolver (this
1142 applies only to what happens when a complex dependency
1143 problem is encountered).
1144 </para>
1145 </listitem>
1146 </varlistentry>
1147
1148 <varlistentry>
1149 <term><option>Debug::pkgProblemResolver::ShowScores</option></term>
1150 <listitem>
1151 <para>
1152 Display a list of all installed packages with their calculated score
1153 used by the pkgProblemResolver. The description of the package
1154 is the same as described in <literal>Debug::pkgDepCache::Marker</literal>
1155 </para>
1156 </listitem>
1157 </varlistentry>
1158
1159 <varlistentry>
1160 <term><option>Debug::sourceList</option></term>
1161
1162 <listitem>
1163 <para>
1164 Print information about the vendors read from
1165 <filename>/etc/apt/vendors.list</filename>.
1166 </para>
1167 </listitem>
1168 </varlistentry>
1169
1170 <!-- 2009/07/11 Currently used nowhere. The corresponding code
1171 is commented.
1172 <varlistentry>
1173 <term><literal>Debug::Vendor</literal></term>
1174
1175 <listitem>
1176 <para>
1177 Print information about each vendor.
1178 </para>
1179 </listitem>
1180 </varlistentry>
1181 -->
1182
1183 </variablelist>
1184 </refsect1>
1185
1186 <refsect1><title>Examples</title>
1187 <para>&configureindex; is a
1188 configuration file showing example values for all possible
1189 options.</para>
1190 </refsect1>
1191
1192 <refsect1><title>Files</title>
1193 <variablelist>
1194 &file-aptconf;
1195 </variablelist>
1196 </refsect1>
1197
1198 <refsect1><title>See Also</title>
1199 <para>&apt-cache;, &apt-config;<!-- ? reading apt.conf -->, &apt-preferences;.</para>
1200 </refsect1>
1201
1202 &manbugs;
1203
1204 </refentry>
1205