debian/apt.auto-removal.sh: merge the remaining bits
[ntk/apt.git] / doc / apt.conf.5.xml
CommitLineData
24f6490f 1<?xml version="1.0" encoding="utf-8" standalone="no"?>
81cf16a2
DK
2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
24f6490f
AL
4
5<!ENTITY % aptent SYSTEM "apt.ent">
6%aptent;
7
0c1a7101
DK
8<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent">
9%aptverbatiment;
10
24f6490f
AL
11]>
12
13<refentry>
5e80de29
AL
14
15 <refentryinfo>
16 &apt-author.jgunthorpe;
17 &apt-author.team;
be1b8568 18 <author>
d5aa88bf 19 &apt-name.dburrows;
be1b8568 20 <contrib>Initial documentation of Debug::*.</contrib>
4920c8c7 21 <email>dburrows@debian.org</email>
be1b8568 22 </author>
5e80de29
AL
23 &apt-email;
24 &apt-product;
25 <!-- The last update date -->
dabb215c 26 <date>2012-06-09T00:00:00Z</date>
5e80de29 27 </refentryinfo>
24f6490f
AL
28
29 <refmeta>
30 <refentrytitle>apt.conf</refentrytitle>
31 <manvolnum>5</manvolnum>
f0599b9c 32 <refmiscinfo class="manual">APT</refmiscinfo>
24f6490f
AL
33 </refmeta>
34
35 <!-- Man page title -->
36 <refnamediv>
37 <refname>apt.conf</refname>
38 <refpurpose>Configuration file for APT</refpurpose>
39 </refnamediv>
5723791e 40
24f6490f 41 <refsect1><title>Description</title>
5723791e
JR
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
e29a6bb1
DK
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
1fc8c922 53 alphanumeric ascending order which have either no or "<literal>conf</literal>"
e29a6bb1 54 as filename extension and which only contain alphanumeric,
7376837d 55 hyphen (-), underscore (_) and period (.) characters.
44477002
JR
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>
5723791e 58 configuration list - in which case it will be silently ignored.</para></listitem>
e29a6bb1
DK
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>
24f6490f 66 <para>The configuration file is organized in a tree with options organized into
5f4331c4 67 functional groups. Option specification is given with a double colon
5723791e 68 notation; for instance <literal>APT::Get::Assume-Yes</literal> is an option within
5f4331c4 69 the APT tool group, for the Get tool. Options do not inherit from their
24f6490f
AL
70 parent groups.</para>
71
e3a1f08d 72 <para>Syntactically the configuration language is modeled after what the ISC tools
7f1bc985
EL
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.
24f6490f 76 Each line is of the form
5723791e
JR
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>
24f6490f
AL
83
84<informalexample><programlisting>
85APT {
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
d82cdf73 94 opening a scope and including a single string enclosed in quotes followed by a
5723791e 95 semicolon. Multiple entries can be included, separated by a semicolon.</para>
24f6490f
AL
96
97<informalexample><programlisting>
98DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";};
99</programlisting></informalexample>
100
00612a8c 101 <para>In general the sample configuration file &configureindex;
24f6490f
AL
102 is a good guide for how it should look.</para>
103
5723791e
JR
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>
fb3b7ef0 106
5723791e 107 <para>Names for the configuration items are optional if a list is defined as can be seen in
63fc5550
DK
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
5723791e 110 the option in the same way as any other option by reassigning a new value to the option.</para>
63fc5550 111
5723791e
JR
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.
d82cdf73 117 <literal>#clear</literal> is used to erase a part of the configuration tree. The
63fc5550
DK
118 specified element and all its descendants are erased.
119 (Note that these lines also need to end with a semicolon.)</para>
120
5723791e
JR
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>
24f6490f 129
5723791e 130 <para>All of the APT tools take an -o option which allows an arbitrary configuration
24f6490f
AL
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
c086ac18 133 sign then the new value of the option. To append a new element to a list, add a
5723791e
JR
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>
24f6490f
AL
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>
2b9b27c3 158 <varlistentry><term><option>Architecture</option></term>
24f6490f
AL
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>
58014adc 163
2b9b27c3 164 <varlistentry><term><option>Architectures</option></term>
5723791e
JR
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>.
58014adc
DK
175 </para></listitem>
176 </varlistentry>
177
2b9b27c3 178 <varlistentry><term><option>Default-Release</option></term>
e1dd65c9 179 <listitem><para>Default release to install packages from if more than one
5723791e 180 version is available. Contains release name, codename or release version. Examples: 'stable', 'testing',
e1dd65c9 181 'unstable', '&stable-codename;', '&testing-codename;', '4.0', '5.0*'. See also &apt-preferences;.</para></listitem>
60a8f9c0 182 </varlistentry>
45df0ad2 183
2b9b27c3 184 <varlistentry><term><option>Ignore-Hold</option></term>
5723791e 185 <listitem><para>Ignore held packages; this global option causes the problem resolver to
24f6490f
AL
186 ignore held packages in its decision making.</para></listitem>
187 </varlistentry>
188
2b9b27c3 189 <varlistentry><term><option>Clean-Installed</option></term>
24f6490f
AL
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
2b9b27c3 196 <varlistentry><term><option>Immediate-Configure</option></term>
5723791e
JR
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>
24f6490f
AL
230 </varlistentry>
231
2b9b27c3 232 <varlistentry><term><option>Force-LoopBreak</option></term>
5723791e
JR
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>
24f6490f
AL
243 </varlistentry>
244
2b9b27c3 245 <varlistentry><term><option>Cache-Start</option></term><term><option>Cache-Grow</option></term><term><option>Cache-Limit</option></term>
5723791e
JR
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,
dcdf1ef1 248 and is therefore the amount of memory APT will request at startup. The default value is
5723791e 249 20971520 bytes (~20 MB). Note that this amount of space needs to be available for APT;
c086ac18
DK
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
5723791e
JR
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
dcdf1ef1
DK
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.
5723791e 257 If <literal>Cache-Grow</literal> is set to 0 the automatic growth of the cache is disabled.
dcdf1ef1 258 </para></listitem>
24f6490f
AL
259 </varlistentry>
260
2b9b27c3 261 <varlistentry><term><option>Build-Essential</option></term>
5723791e 262 <listitem><para>Defines which packages are considered essential build dependencies.</para></listitem>
24f6490f
AL
263 </varlistentry>
264
2b9b27c3 265 <varlistentry><term><option>Get</option></term>
5723791e 266 <listitem><para>The Get subsection controls the &apt-get; tool; please see its
24f6490f
AL
267 documentation for more information about the options here.</para></listitem>
268 </varlistentry>
269
2b9b27c3 270 <varlistentry><term><option>Cache</option></term>
5723791e 271 <listitem><para>The Cache subsection controls the &apt-cache; tool; please see its
24f6490f
AL
272 documentation for more information about the options here.</para></listitem>
273 </varlistentry>
274
2b9b27c3 275 <varlistentry><term><option>CDROM</option></term>
5723791e 276 <listitem><para>The CDROM subsection controls the &apt-cdrom; tool; please see its
24f6490f
AL
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>
5723791e
JR
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>
24f6490f
AL
286
287 <variablelist>
2b9b27c3 288 <varlistentry><term><option>Check-Valid-Until</option></term>
5723791e
JR
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>
b02fffa6
DK
300 </varlistentry>
301
2b9b27c3 302 <varlistentry><term><option>Max-ValidTime</option></term>
5723791e
JR
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.
89500a25
DK
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.
5723791e 308 The default value is <literal>0</literal> which stands for "valid forever".
89500a25
DK
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
2b9b27c3 314 <varlistentry><term><option>Min-ValidTime</option></term>
5723791e
JR
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
2130caa8 320 instead of completely disabling the expiration date checking.
89500a25
DK
321 Archive specific settings can and should be used by appending the label of
322 the archive to the option name.
b02fffa6
DK
323 </para></listitem>
324 </varlistentry>
325
2b9b27c3 326 <varlistentry><term><option>PDiffs</option></term>
d82cdf73 327 <listitem><para>Try to download deltas called <literal>PDiffs</literal> for
5723791e
JR
328 indexes (like <filename>Packages</filename> files) instead of downloading
329 whole ones. True by default.</para>
02dceb31 330 <para>Two sub-options to limit the use of PDiffs are also available:
5723791e
JR
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>
f3b8d857 333 on the other hand is the maximum percentage of the size of all patches
02dceb31
DK
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>
0d70b055
EL
337 </varlistentry>
338
2b9b27c3 339 <varlistentry><term><option>Queue-Mode</option></term>
24f6490f
AL
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
2b9b27c3 347 <varlistentry><term><option>Retries</option></term>
24f6490f
AL
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
2b9b27c3 352 <varlistentry><term><option>Source-Symlinks</option></term>
24f6490f
AL
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
2b9b27c3 357 <varlistentry><term><option>http</option></term>
5723791e
JR
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
24f6490f 361 <literal>http::Proxy::&lt;host&gt;</literal> with the special keyword <literal>DIRECT</literal>
788a8f42
EL
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>
24f6490f 365
5723791e
JR
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>
24f6490f 375
5723791e
JR
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>
24f6490f 378
82214317 379 <para>The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to
5723791e
JR
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.
82214317
DK
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>
5900bd8d 385
5723791e 386 <para><literal>Acquire::http::AllowRedirect</literal> controls whether APT will follow
c086ac18
DK
387 redirects, which is enabled by default.</para>
388
5900bd8d 389 <para>The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</literal>
5723791e
JR
390 which accepts integer values in kilobytes. The default value is 0 which deactivates
391 the limit and tries to use all available bandwidth (note that this option implicitly
392 disables downloading from multiple servers at the same time.)</para>
4494239c
DK
393
394 <para><literal>Acquire::http::User-Agent</literal> can be used to set a different
395 User-Agent for the http download method as some proxies allow access for clients
396 only if the client uses a known identifier.</para>
397 </listitem>
24f6490f
AL
398 </varlistentry>
399
2b9b27c3 400 <varlistentry><term><option>https</option></term>
5723791e
JR
401 <listitem><para>
402 The <literal>Cache-control</literal>, <literal>Timeout</literal>,
403 <literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and
404 <literal>proxy</literal> options work for HTTPS URIs in the same way
405 as for the <literal>http</literal> method, and default to the same
406 values if they are not explicitly set. The
407 <literal>Pipeline-Depth</literal> option is not yet supported.
408 </para>
370ad5e1
EL
409
410 <para><literal>CaInfo</literal> suboption specifies place of file that
411 holds info about trusted certificates.
5723791e
JR
412 <literal>&lt;host&gt;::CaInfo</literal> is the corresponding per-host option.
413 <literal>Verify-Peer</literal> boolean suboption determines whether or not the
414 server's host certificate should be verified against trusted certificates.
415 <literal>&lt;host&gt;::Verify-Peer</literal> is the corresponding per-host option.
416 <literal>Verify-Host</literal> boolean suboption determines whether or not the
417 server's hostname should be verified.
418 <literal>&lt;host&gt;::Verify-Host</literal> is the corresponding per-host option.
370ad5e1 419 <literal>SslCert</literal> determines what certificate to use for client
5723791e 420 authentication. <literal>&lt;host&gt;::SslCert</literal> is the corresponding per-host option.
370ad5e1 421 <literal>SslKey</literal> determines what private key to use for client
5723791e 422 authentication. <literal>&lt;host&gt;::SslKey</literal> is the corresponding per-host option.
370ad5e1 423 <literal>SslForceVersion</literal> overrides default SSL version to use.
5723791e
JR
424 It can contain either of the strings '<literal>TLSv1</literal>' or
425 '<literal>SSLv3</literal>'.
426 <literal>&lt;host&gt;::SslForceVersion</literal> is the corresponding per-host option.
370ad5e1
EL
427 </para></listitem></varlistentry>
428
2b9b27c3 429 <varlistentry><term><option>ftp</option></term>
5723791e
JR
430 <listitem><para>
431 <literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs.
432 It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</literal>.
433 Per host proxies can also be specified by using the form
788a8f42
EL
434 <literal>ftp::Proxy::&lt;host&gt;</literal> with the special keyword <literal>DIRECT</literal>
435 meaning to use no proxies. If no one of the above settings is specified,
436 <envar>ftp_proxy</envar> environment variable
5723791e 437 will be used. To use an FTP
24f6490f
AL
438 proxy you will have to set the <literal>ftp::ProxyLogin</literal> script in the
439 configuration file. This entry specifies the commands to send to tell
440 the proxy server what to connect to. Please see
441 &configureindex; for an example of
5723791e
JR
442 how to do this. The substitution variables representing the corresponding
443 URI component are <literal>$(PROXY_USER)</literal>,
444 <literal>$(PROXY_PASS)</literal>, <literal>$(SITE_USER)</literal>,
445 <literal>$(SITE_PASS)</literal>, <literal>$(SITE)</literal> and
446 <literal>$(SITE_PORT)</literal>.</para>
24f6490f 447
5723791e
JR
448 <para>The option <literal>timeout</literal> sets the timeout timer used by the method;
449 this value applies to the connection as well as the data timeout.</para>
24f6490f
AL
450
451 <para>Several settings are provided to control passive mode. Generally it is
5723791e
JR
452 safe to leave passive mode on; it works in nearly every environment.
453 However, some situations require that passive mode be disabled and port
454 mode FTP used instead. This can be done globally or for connections that
455 go through a proxy or for a specific host (see the sample config file
24f6490f
AL
456 for examples).</para>
457
458 <para>It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</envar>
5723791e 459 environment variable to an HTTP URL - see the discussion of the http method
24f6490f
AL
460 above for syntax. You cannot set this in the configuration file and it is
461 not recommended to use FTP over HTTP due to its low efficiency.</para>
462
463 <para>The setting <literal>ForceExtended</literal> controls the use of RFC2428
e3a1f08d 464 <literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is false, which means
24f6490f
AL
465 these commands are only used if the control connection is IPv6. Setting this
466 to true forces their use even on IPv4 connections. Note that most FTP servers
467 do not support RFC2428.</para></listitem>
468 </varlistentry>
469
2b9b27c3 470 <varlistentry><term><option>cdrom</option></term>
5723791e
JR
471 <listitem><para>
472 For URIs using the <literal>cdrom</literal> method, the only configurable
473 option is the mount point, <literal>cdrom::Mount</literal>, which must be
474 the mount point for the CD-ROM (or DVD, or whatever) drive as specified in
475 <filename>/etc/fstab</filename>. It is possible to provide alternate mount
476 and unmount commands if your mount point cannot be listed in the fstab.
477 The syntax is to put <literallayout>/cdrom/::Mount "foo";</literallayout> within
478 the <literal>cdrom</literal> block. It is important to have the trailing slash.
479 Unmount commands can be specified using UMount.
480 </para></listitem>
24f6490f 481 </varlistentry>
8a3642bd 482
2b9b27c3 483 <varlistentry><term><option>gpgv</option></term>
5723791e
JR
484 <listitem><para>
485 For GPGV URIs the only configurable option is <literal>gpgv::Options</literal>,
486 which passes additional parameters to gpgv.
8a3642bd
MV
487 </para></listitem>
488 </varlistentry>
489
2b9b27c3 490 <varlistentry><term><option>CompressionTypes</option></term>
e85b4cd5
DK
491 <listitem><para>List of compression types which are understood by the acquire methods.
492 Files like <filename>Packages</filename> can be available in various compression formats.
5723791e
JR
493 By default the acquire methods can decompress <command>bzip2</command>, <command>lzma</command>
494 and <command>gzip</command> compressed files; with this setting more formats can be added
8bd02d8b 495 on the fly or the used method can be changed. The syntax for this is:
e85b4cd5 496 <synopsis>Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> "<replaceable>Methodname</replaceable>";</synopsis>
5723791e 497 </para><para>Also, the <literal>Order</literal> subgroup can be used to define in which order
8bd02d8b
DK
498 the acquire system will try to download the compressed files. The acquire system will try the first
499 and proceed with the next compression type in this list on error, so to prefer one over the other type
5723791e 500 simply add the preferred type first - default types not already added will be implicitly appended
8bd02d8b
DK
501 to the end of the list, so e.g. <synopsis>Acquire::CompressionTypes::Order:: "gz";</synopsis> can
502 be used to prefer <command>gzip</command> compressed files over <command>bzip2</command> and <command>lzma</command>.
503 If <command>lzma</command> should be preferred over <command>gzip</command> and <command>bzip2</command> the
5723791e
JR
504 configure setting should look like this: <synopsis>Acquire::CompressionTypes::Order { "lzma"; "gz"; };</synopsis>
505 It is not needed to add <literal>bz2</literal> to the list explicitly as it will be added automatically.</para>
506 <para>Note that the
507 <literal>Dir::Bin::<replaceable>Methodname</replaceable></literal>
508 will be checked at run time. If this option has been set, the
509 method will only be used if this file exists; e.g. for the
510 <literal>bzip2</literal> method (the inbuilt) setting is:
511 <literallayout>Dir::Bin::bzip2 "/bin/bzip2";</literallayout>
a9564741 512 Note also that list entries specified on the command line will be added at the end of the list
8bd02d8b 513 specified in the configuration files, but before the default entries. To prefer a type in this case
5d885723 514 over the ones specified in the configuration files you can set the option direct - not in list style.
5723791e 515 This will not override the defined list; it will only prefix the list with this type.</para>
5d885723 516 <para>The special type <literal>uncompressed</literal> can be used to give uncompressed files a
1fc8c922 517 preference, but note that most archives don't provide uncompressed files so this is mostly only
5d885723 518 useable for local mirrors.</para></listitem>
e85b4cd5 519 </varlistentry>
45df0ad2 520
2b9b27c3 521 <varlistentry><term><option>GzipIndexes</option></term>
c8c6e61b 522 <listitem><para>
523 When downloading <literal>gzip</literal> compressed indexes (Packages, Sources, or
524 Translations), keep them gzip compressed locally instead of unpacking
525 them. This saves quite a lot of disk space at the expense of more CPU
526 requirements when building the local package caches. False by default.
527 </para></listitem>
528 </varlistentry>
529
2b9b27c3 530 <varlistentry><term><option>Languages</option></term>
45df0ad2 531 <listitem><para>The Languages subsection controls which <filename>Translation</filename> files are downloaded
5723791e
JR
532 and in which order APT tries to display the description-translations. APT will try to display the first
533 available description in the language which is listed first. Languages can be defined with their
534 short or long language codes. Note that not all archives provide <filename>Translation</filename>
535 files for every language - the long language codes are especially rare.</para>
45df0ad2 536 <para>The default list includes "environment" and "en". "<literal>environment</literal>" has a special meaning here:
5723791e 537 it will be replaced at runtime with the language codes extracted from the <literal>LC_MESSAGES</literal> environment variable.
45df0ad2
DK
538 It will also ensure that these codes are not included twice in the list. If <literal>LC_MESSAGES</literal>
539 is set to "C" only the <filename>Translation-en</filename> file (if available) will be used.
5723791e
JR
540 To force APT to use no Translation file use the setting <literal>Acquire::Languages=none</literal>. "<literal>none</literal>"
541 is another special meaning code which will stop the search for a suitable <filename>Translation</filename> file.
542 This tells APT to download these translations too, without actually
543 using them unless the environment specifies the languages. So the
544 following example configuration will result in the order "en, de" in an
545 English locale or "de, en" in a German one. Note that "fr" is
546 downloaded, but not used unless APT is used in a French locale (where
547 the order would be "fr, de, en").
c086ac18
DK
548 <programlisting>Acquire::Languages { "environment"; "de"; "en"; "none"; "fr"; };</programlisting></para>
549 <para>Note: To prevent problems resulting from APT being executed in different environments
550 (e.g. by different users or by other programs) all Translation files which are found in
551 <filename>/var/lib/apt/lists/</filename> will be added to the end of the list
552 (after an implicit "<literal>none</literal>").</para>
553 </listitem>
45df0ad2
DK
554 </varlistentry>
555
6db4e5c6
MV
556 <varlistentry><term><option>ForceIPv4</option></term>
557 <listitem><para>
558 When downloading, force to use only the IPv4 protocol.
559 </para></listitem>
560 </varlistentry>
561
562 <varlistentry><term><option>ForceIPv6</option></term>
563 <listitem><para>
564 When downloading, force to use only the IPv6 protocol.
565 </para></listitem>
566 </varlistentry>
567
24f6490f 568 </variablelist>
24f6490f
AL
569 </refsect1>
570
571 <refsect1><title>Directories</title>
572
573 <para>The <literal>Dir::State</literal> section has directories that pertain to local
574 state information. <literal>lists</literal> is the directory to place downloaded
5723791e 575 package lists in and <literal>status</literal> is the name of the &dpkg; status file.
c086ac18 576 <literal>preferences</literal> is the name of the APT <filename>preferences</filename> file.
5723791e
JR
577 <literal>Dir::State</literal> contains the default directory to prefix on all
578 sub-items if they do not start with <filename>/</filename> or <filename>./</filename>.</para>
24f6490f
AL
579
580 <para><literal>Dir::Cache</literal> contains locations pertaining to local cache
581 information, such as the two package caches <literal>srcpkgcache</literal> and
582 <literal>pkgcache</literal> as well as the location to place downloaded archives,
583 <literal>Dir::Cache::archives</literal>. Generation of caches can be turned off
5723791e
JR
584 by setting their names to the empty string. This will slow down startup but
585 save disk space. It is probably preferable to turn off the pkgcache rather
24f6490f
AL
586 than the srcpkgcache. Like <literal>Dir::State</literal> the default
587 directory is contained in <literal>Dir::Cache</literal></para>
588
589 <para><literal>Dir::Etc</literal> contains the location of configuration files,
590 <literal>sourcelist</literal> gives the location of the sourcelist and
591 <literal>main</literal> is the default configuration file (setting has no effect,
592 unless it is done from the config file specified by
13e8426f 593 <envar>APT_CONFIG</envar>).</para>
24f6490f
AL
594
595 <para>The <literal>Dir::Parts</literal> setting reads in all the config fragments in
596 lexical order from the directory specified. After this is done then the
597 main config file is loaded.</para>
598
599 <para>Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::Bin::Methods</literal>
600 specifies the location of the method handlers and <literal>gzip</literal>,
e85b4cd5 601 <literal>bzip2</literal>, <literal>lzma</literal>,
24f6490f
AL
602 <literal>dpkg</literal>, <literal>apt-get</literal> <literal>dpkg-source</literal>
603 <literal>dpkg-buildpackage</literal> and <literal>apt-cache</literal> specify the location
604 of the respective programs.</para>
db2cca11
OS
605
606 <para>
607 The configuration item <literal>RootDir</literal> has a special
608 meaning. If set, all paths in <literal>Dir::</literal> will be
609 relative to <literal>RootDir</literal>, <emphasis>even paths that
610 are specified absolutely</emphasis>. So, for instance, if
611 <literal>RootDir</literal> is set to
612 <filename>/tmp/staging</filename> and
613 <literal>Dir::State::status</literal> is set to
614 <filename>/var/lib/dpkg/status</filename>, then the status file
615 will be looked up in
616 <filename>/tmp/staging/var/lib/dpkg/status</filename>.
617 </para>
1408e219
DK
618
619 <para>
620 The <literal>Ignore-Files-Silently</literal> list can be used to specify
621 which files APT should silently ignore while parsing the files in the
622 fragment directories. Per default a file which end with <literal>.disabled</literal>,
623 <literal>~</literal>, <literal>.bak</literal> or <literal>.dpkg-[a-z]+</literal>
624 is silently ignored. As seen in the last default value these patterns can use regular
625 expression syntax.
626 </para>
24f6490f
AL
627 </refsect1>
628
629 <refsect1><title>APT in DSelect</title>
630 <para>
631 When APT is used as a &dselect; method several configuration directives
5723791e 632 control the default behavior. These are in the <literal>DSelect</literal> section.</para>
24f6490f
AL
633
634 <variablelist>
2b9b27c3 635 <varlistentry><term><option>Clean</option></term>
5723791e
JR
636 <listitem><para>Cache Clean mode; this value may be one of
637 <literal>always</literal>, <literal>prompt</literal>,
638 <literal>auto</literal>, <literal>pre-auto</literal> and
639 <literal>never</literal>.
640 <literal>always</literal> and <literal>prompt</literal> will remove
641 all packages from the cache after upgrading, <literal>prompt</literal>
642 (the default) does so conditionally.
643 <literal>auto</literal> removes only those packages which are no longer
644 downloadable (replaced with a new version for instance).
645 <literal>pre-auto</literal> performs this action before downloading
646 new packages.</para></listitem>
24f6490f
AL
647 </varlistentry>
648
2b9b27c3 649 <varlistentry><term><option>options</option></term>
5723791e 650 <listitem><para>The contents of this variable are passed to &apt-get; as command line
24f6490f
AL
651 options when it is run for the install phase.</para></listitem>
652 </varlistentry>
653
2b9b27c3 654 <varlistentry><term><option>Updateoptions</option></term>
5723791e 655 <listitem><para>The contents of this variable are passed to &apt-get; as command line
24f6490f
AL
656 options when it is run for the update phase.</para></listitem>
657 </varlistentry>
658
2b9b27c3 659 <varlistentry><term><option>PromptAfterUpdate</option></term>
24f6490f
AL
660 <listitem><para>If true the [U]pdate operation in &dselect; will always prompt to continue.
661 The default is to prompt only on error.</para></listitem>
662 </varlistentry>
663 </variablelist>
664 </refsect1>
665
5723791e 666 <refsect1><title>How APT calls &dpkg;</title>
24f6490f
AL
667 <para>Several configuration directives control how APT invokes &dpkg;. These are
668 in the <literal>DPkg</literal> section.</para>
669
670 <variablelist>
2b9b27c3 671 <varlistentry><term><option>options</option></term>
5723791e 672 <listitem><para>This is a list of options to pass to &dpkg;. The options must be specified
24f6490f
AL
673 using the list notation and each list item is passed as a single argument
674 to &dpkg;.</para></listitem>
675 </varlistentry>
676
2b9b27c3 677 <varlistentry><term><option>Pre-Invoke</option></term><term><option>Post-Invoke</option></term>
24f6490f
AL
678 <listitem><para>This is a list of shell commands to run before/after invoking &dpkg;.
679 Like <literal>options</literal> this must be specified in list notation. The
5723791e 680 commands are invoked in order using <filename>/bin/sh</filename>; should any
24f6490f
AL
681 fail APT will abort.</para></listitem>
682 </varlistentry>
683
2b9b27c3 684 <varlistentry><term><option>Pre-Install-Pkgs</option></term>
5723791e 685 <listitem><para>This is a list of shell commands to run before invoking &dpkg;. Like
24f6490f 686 <literal>options</literal> this must be specified in list notation. The commands
5723791e
JR
687 are invoked in order using <filename>/bin/sh</filename>; should any fail APT
688 will abort. APT will pass the filenames of all .deb files it is going to
689 install to the commands, one per line on standard input.</para>
24f6490f
AL
690
691 <para>Version 2 of this protocol dumps more information, including the
692 protocol version, the APT configuration space and the packages, files
693 and versions being changed. Version 2 is enabled by setting
694 <literal>DPkg::Tools::options::cmd::Version</literal> to 2. <literal>cmd</literal> is a
695 command given to <literal>Pre-Install-Pkgs</literal>.</para></listitem>
696 </varlistentry>
697
2b9b27c3 698 <varlistentry><term><option>Run-Directory</option></term>
5723791e 699 <listitem><para>APT chdirs to this directory before invoking &dpkg;, the default is
24f6490f
AL
700 <filename>/</filename>.</para></listitem>
701 </varlistentry>
702
2b9b27c3 703 <varlistentry><term><option>Build-options</option></term>
5723791e 704 <listitem><para>These options are passed to &dpkg-buildpackage; when compiling packages;
24f6490f
AL
705 the default is to disable signing and produce all binaries.</para></listitem>
706 </varlistentry>
707 </variablelist>
3e9c4f70 708
5e312de7 709 <refsect2><title>dpkg trigger usage (and related options)</title>
5723791e
JR
710 <para>APT can call &dpkg; in such a way as to let it make aggressive use of triggers over
711 multiple calls of &dpkg;. Without further options &dpkg; will use triggers once each time it runs.
712 Activating these options can therefore decrease the time needed to perform the
713 install or upgrade. Note that it is intended to activate these options per default in the
714 future, but as it drastically changes the way APT calls &dpkg; it needs a lot more testing.
3e9c4f70 715 <emphasis>These options are therefore currently experimental and should not be used in
5723791e 716 production environments.</emphasis> It also breaks progress reporting such that all front-ends will
3e9c4f70
DK
717 currently stay around half (or more) of the time in the 100% state while it actually configures
718 all packages.</para>
a9564741 719 <para>Note that it is not guaranteed that APT will support these options or that these options will
5e312de7 720 not cause (big) trouble in the future. If you have understand the current risks and problems with
5723791e 721 these options, but are brave enough to help testing them, create a new configuration file and test a
5e312de7 722 combination of options. Please report any bugs, problems and improvements you encounter and make sure
5723791e 723 to note which options you have used in your reports. Asking &dpkg; for help could also be useful for
5e312de7 724 debugging proposes, see e.g. <command>dpkg --audit</command>. A defensive option combination would be
3e9c4f70 725<literallayout>DPkg::NoTriggers "true";
5e312de7
DK
726PackageManager::Configure "smart";
727DPkg::ConfigurePending "true";
d5081aee 728DPkg::TriggersPending "true";</literallayout></para>
3e9c4f70
DK
729
730 <variablelist>
2b9b27c3 731 <varlistentry><term><option>DPkg::NoTriggers</option></term>
5723791e
JR
732 <listitem><para>Add the no triggers flag to all &dpkg; calls (except the ConfigurePending call).
733 See &dpkg; if you are interested in what this actually means. In short: &dpkg; will not run the
5f4331c4 734 triggers when this flag is present unless it is explicitly called to do so in an extra call.
5723791e
JR
735 Note that this option exists (undocumented) also in older APT versions with a slightly different
736 meaning: Previously these option only append --no-triggers to the configure calls to &dpkg; -
737 now APT will also add this flag to the unpack and remove calls.</para></listitem>
3e9c4f70 738 </varlistentry>
2b9b27c3 739 <varlistentry><term><option>PackageManager::Configure</option></term>
5723791e
JR
740 <listitem><para>Valid values are "<literal>all</literal>",
741 "<literal>smart</literal>" and "<literal>no</literal>".
742 The default value is "<literal>all</literal>", which causes APT to
743 configure all packages. The "<literal>smart</literal>" way is to
744 configure only packages which need to be configured before another
745 package can be unpacked (Pre-Depends), and let the rest be configured
746 by &dpkg; with a call generated by the ConfigurePending option (see
747 below). On the other hand, "<literal>no</literal>" will not configure
748 anything, and totally relies on &dpkg; for configuration (which at the
749 moment will fail if a Pre-Depends is encountered). Setting this option
750 to any value other than <literal>all</literal> will implicitly also
751 activate the next option by default, as otherwise the system could end
752 in an unconfigured and potentially unbootable state.</para></listitem>
3e9c4f70 753 </varlistentry>
2b9b27c3 754 <varlistentry><term><option>DPkg::ConfigurePending</option></term>
5723791e
JR
755 <listitem><para>If this option is set APT will call <command>dpkg --configure --pending</command>
756 to let &dpkg; handle all required configurations and triggers. This option is activated automatically
757 per default if the previous option is not set to <literal>all</literal>, but deactivating it could be useful
5f4331c4 758 if you want to run APT multiple times in a row - e.g. in an installer. In these sceneries you could
3e9c4f70
DK
759 deactivate this option in all but the last run.</para></listitem>
760 </varlistentry>
2b9b27c3 761 <varlistentry><term><option>DPkg::TriggersPending</option></term>
5723791e
JR
762 <listitem><para>Useful for the <literal>smart</literal> configuration as a package which has pending
763 triggers is not considered as <literal>installed</literal>, and &dpkg; treats them as <literal>unpacked</literal>
764 currently which is a showstopper for Pre-Dependencies (see debbugs #526774). Note that this will
5e312de7
DK
765 process all triggers, not only the triggers needed to configure this package.</para></listitem>
766 </varlistentry>
2b9b27c3 767 <varlistentry><term><option>OrderList::Score::Immediate</option></term>
5723791e
JR
768 <listitem><para>Essential packages (and their dependencies) should be configured immediately
769 after unpacking. It is a good idea to do this quite early in the upgrade process as these
770 configure calls also currently require <literal>DPkg::TriggersPending</literal> which
771 will run quite a few triggers (which may not be needed). Essentials get per default a high score
772 but the immediate flag is relatively low (a package which has a Pre-Depends is rated higher).
5e312de7 773 These option and the others in the same group can be used to change the scoring. The following
5723791e 774 example shows the settings with their default values.
5e312de7
DK
775 <literallayout>OrderList::Score {
776 Delete 500;
777 Essential 200;
778 Immediate 10;
779 PreDepends 50;
780};</literallayout>
781 </para></listitem>
782 </varlistentry>
3e9c4f70
DK
783 </variablelist>
784 </refsect2>
24f6490f
AL
785 </refsect1>
786
0224daf2
EL
787 <refsect1>
788 <title>Periodic and Archives options</title>
789 <para><literal>APT::Periodic</literal> and <literal>APT::Archives</literal>
790 groups of options configure behavior of apt periodic updates, which is
5723791e 791 done by the <literal>/etc/cron.daily/apt</literal> script. See the top of
0224daf2
EL
792 this script for the brief documentation of these options.
793 </para>
794 </refsect1>
795
be1b8568
EL
796 <refsect1>
797 <title>Debug options</title>
798 <para>
799 Enabling options in the <literal>Debug::</literal> section will
800 cause debugging information to be sent to the standard error
801 stream of the program utilizing the <literal>apt</literal>
802 libraries, or enable special program modes that are primarily
803 useful for debugging the behavior of <literal>apt</literal>.
804 Most of these options are not interesting to a normal user, but a
805 few may be:
806
807 <itemizedlist>
808 <listitem>
809 <para>
810 <literal>Debug::pkgProblemResolver</literal> enables output
811 about the decisions made by
812 <literal>dist-upgrade, upgrade, install, remove, purge</literal>.
813 </para>
814 </listitem>
815
816 <listitem>
817 <para>
818 <literal>Debug::NoLocking</literal> disables all file
819 locking. This can be used to run some operations (for
820 instance, <literal>apt-get -s install</literal>) as a
821 non-root user.
822 </para>
823 </listitem>
824
825 <listitem>
826 <para>
827 <literal>Debug::pkgDPkgPM</literal> prints out the actual
828 command line each time that <literal>apt</literal> invokes
829 &dpkg;.
830 </para>
831 </listitem>
832
833 <listitem>
834 <para>
835 <literal>Debug::IdentCdrom</literal> disables the inclusion
25838be6 836 of statfs data in CD-ROM IDs. <!-- TODO: provide a
be1b8568
EL
837 motivating example, except I haven't a clue why you'd want
838 to do this. -->
839 </para>
840 </listitem>
841 </itemizedlist>
8a3642bd 842 </para>
be1b8568
EL
843
844 <para>
845 A full list of debugging options to apt follows.
846 </para>
847
848 <variablelist>
849 <varlistentry>
2b9b27c3 850 <term><option>Debug::Acquire::cdrom</option></term>
be1b8568
EL
851
852 <listitem>
853 <para>
854 Print information related to accessing
855 <literal>cdrom://</literal> sources.
856 </para>
857 </listitem>
858 </varlistentry>
859
860 <varlistentry>
2b9b27c3 861 <term><option>Debug::Acquire::ftp</option></term>
be1b8568
EL
862
863 <listitem>
864 <para>
865 Print information related to downloading packages using
866 FTP.
867 </para>
868 </listitem>
869 </varlistentry>
870
871 <varlistentry>
2b9b27c3 872 <term><option>Debug::Acquire::http</option></term>
be1b8568
EL
873
874 <listitem>
875 <para>
876 Print information related to downloading packages using
877 HTTP.
878 </para>
879 </listitem>
880 </varlistentry>
881
882 <varlistentry>
2b9b27c3 883 <term><option>Debug::Acquire::https</option></term>
be1b8568
EL
884
885 <listitem>
886 <para>
887 Print information related to downloading packages using
888 HTTPS.
889 </para>
890 </listitem>
891 </varlistentry>
892
893 <varlistentry>
2b9b27c3 894 <term><option>Debug::Acquire::gpgv</option></term>
be1b8568
EL
895
896 <listitem>
897 <para>
898 Print information related to verifying cryptographic
899 signatures using <literal>gpg</literal>.
900 </para>
901 </listitem>
902 </varlistentry>
903
904 <varlistentry>
2b9b27c3 905 <term><option>Debug::aptcdrom</option></term>
be1b8568
EL
906
907 <listitem>
908 <para>
909 Output information about the process of accessing
910 collections of packages stored on CD-ROMs.
911 </para>
912 </listitem>
913 </varlistentry>
914
915 <varlistentry>
2b9b27c3 916 <term><option>Debug::BuildDeps</option></term>
be1b8568
EL
917 <listitem>
918 <para>
919 Describes the process of resolving build-dependencies in
920 &apt-get;.
921 </para>
922 </listitem>
923 </varlistentry>
924
925 <varlistentry>
2b9b27c3 926 <term><option>Debug::Hashes</option></term>
be1b8568
EL
927 <listitem>
928 <para>
929 Output each cryptographic hash that is generated by the
930 <literal>apt</literal> libraries.
931 </para>
932 </listitem>
933 </varlistentry>
934
935 <varlistentry>
2b9b27c3 936 <term><option>Debug::IdentCDROM</option></term>
be1b8568
EL
937 <listitem>
938 <para>
939 Do not include information from <literal>statfs</literal>,
940 namely the number of used and free blocks on the CD-ROM
941 filesystem, when generating an ID for a CD-ROM.
942 </para>
943 </listitem>
944 </varlistentry>
945
946 <varlistentry>
2b9b27c3 947 <term><option>Debug::NoLocking</option></term>
be1b8568
EL
948 <listitem>
949 <para>
950 Disable all file locking. For instance, this will allow
951 two instances of <quote><literal>apt-get
952 update</literal></quote> to run at the same time.
953 </para>
954 </listitem>
955 </varlistentry>
956
957 <varlistentry>
2b9b27c3 958 <term><option>Debug::pkgAcquire</option></term>
be1b8568
EL
959
960 <listitem>
961 <para>
962 Log when items are added to or removed from the global
963 download queue.
964 </para>
965 </listitem>
966 </varlistentry>
967
968 <varlistentry>
2b9b27c3 969 <term><option>Debug::pkgAcquire::Auth</option></term>
be1b8568
EL
970 <listitem>
971 <para>
972 Output status messages and errors related to verifying
973 checksums and cryptographic signatures of downloaded files.
974 </para>
975 </listitem>
976 </varlistentry>
977
978 <varlistentry>
2b9b27c3 979 <term><option>Debug::pkgAcquire::Diffs</option></term>
be1b8568
EL
980 <listitem>
981 <para>
982 Output information about downloading and applying package
983 index list diffs, and errors relating to package index list
984 diffs.
985 </para>
986 </listitem>
987 </varlistentry>
988
989 <varlistentry>
2b9b27c3 990 <term><option>Debug::pkgAcquire::RRed</option></term>
be1b8568
EL
991
992 <listitem>
993 <para>
994 Output information related to patching apt package lists
995 when downloading index diffs instead of full indices.
996 </para>
997 </listitem>
998 </varlistentry>
999
1000 <varlistentry>
2b9b27c3 1001 <term><option>Debug::pkgAcquire::Worker</option></term>
be1b8568
EL
1002
1003 <listitem>
1004 <para>
1005 Log all interactions with the sub-processes that actually
1006 perform downloads.
1007 </para>
1008 </listitem>
1009 </varlistentry>
1010
1011 <varlistentry>
2b9b27c3 1012 <term><option>Debug::pkgAutoRemove</option></term>
be1b8568
EL
1013
1014 <listitem>
1015 <para>
1016 Log events related to the automatically-installed status of
1017 packages and to the removal of unused packages.
1018 </para>
1019 </listitem>
1020 </varlistentry>
1021
1022 <varlistentry>
2b9b27c3 1023 <term><option>Debug::pkgDepCache::AutoInstall</option></term>
be1b8568
EL
1024 <listitem>
1025 <para>
1026 Generate debug messages describing which packages are being
1027 automatically installed to resolve dependencies. This
1028 corresponds to the initial auto-install pass performed in,
1029 e.g., <literal>apt-get install</literal>, and not to the
1030 full <literal>apt</literal> dependency resolver; see
1031 <literal>Debug::pkgProblemResolver</literal> for that.
1032 </para>
1033 </listitem>
1034 </varlistentry>
1035
af29ffb4 1036 <varlistentry>
2b9b27c3 1037 <term><option>Debug::pkgDepCache::Marker</option></term>
af29ffb4
MV
1038 <listitem>
1039 <para>
5723791e 1040 Generate debug messages describing which packages are marked
af29ffb4
MV
1041 as keep/install/remove while the ProblemResolver does his work.
1042 Each addition or deletion may trigger additional actions;
5723791e 1043 they are shown indented two additional spaces under the original entry.
af29ffb4
MV
1044 The format for each line is <literal>MarkKeep</literal>,
1045 <literal>MarkDelete</literal> or <literal>MarkInstall</literal> followed by
1046 <literal>package-name &lt;a.b.c -&gt; d.e.f | x.y.z&gt; (section)</literal>
1047 where <literal>a.b.c</literal> is the current version of the package,
1048 <literal>d.e.f</literal> is the version considered for installation and
1049 <literal>x.y.z</literal> is a newer version, but not considered for installation
1050 (because of a low pin score). The later two can be omitted if there is none or if
5723791e 1051 it is the same as the installed version.
af29ffb4
MV
1052 <literal>section</literal> is the name of the section the package appears in.
1053 </para>
1054 </listitem>
1055 </varlistentry>
be1b8568
EL
1056
1057 <varlistentry>
2b9b27c3 1058 <term><option>Debug::pkgDPkgPM</option></term>
be1b8568
EL
1059 <listitem>
1060 <para>
1061 When invoking &dpkg;, output the precise command line with
1062 which it is being invoked, with arguments separated by a
1063 single space character.
1064 </para>
1065 </listitem>
1066 </varlistentry>
1067
1068 <varlistentry>
2b9b27c3 1069 <term><option>Debug::pkgDPkgProgressReporting</option></term>
be1b8568
EL
1070 <listitem>
1071 <para>
1072 Output all the data received from &dpkg; on the status file
1073 descriptor and any errors encountered while parsing it.
1074 </para>
1075 </listitem>
1076 </varlistentry>
1077
1078 <varlistentry>
2b9b27c3 1079 <term><option>Debug::pkgOrderList</option></term>
be1b8568
EL
1080
1081 <listitem>
1082 <para>
1083 Generate a trace of the algorithm that decides the order in
1084 which <literal>apt</literal> should pass packages to
1085 &dpkg;.
1086 </para>
1087 </listitem>
1088 </varlistentry>
1089
1090 <varlistentry>
2b9b27c3 1091 <term><option>Debug::pkgPackageManager</option></term>
be1b8568
EL
1092
1093 <listitem>
1094 <para>
1095 Output status messages tracing the steps performed when
1096 invoking &dpkg;.
1097 </para>
1098 </listitem>
1099 </varlistentry>
1100
1101 <varlistentry>
2b9b27c3 1102 <term><option>Debug::pkgPolicy</option></term>
be1b8568
EL
1103
1104 <listitem>
1105 <para>
1106 Output the priority of each package list on startup.
1107 </para>
1108 </listitem>
1109 </varlistentry>
1110
1111 <varlistentry>
2b9b27c3 1112 <term><option>Debug::pkgProblemResolver</option></term>
be1b8568
EL
1113
1114 <listitem>
1115 <para>
1116 Trace the execution of the dependency resolver (this
1117 applies only to what happens when a complex dependency
1118 problem is encountered).
1119 </para>
1120 </listitem>
1121 </varlistentry>
1122
8b4894fe 1123 <varlistentry>
2b9b27c3 1124 <term><option>Debug::pkgProblemResolver::ShowScores</option></term>
8b4894fe
MV
1125 <listitem>
1126 <para>
1127 Display a list of all installed packages with their calculated score
1128 used by the pkgProblemResolver. The description of the package
1129 is the same as described in <literal>Debug::pkgDepCache::Marker</literal>
1130 </para>
1131 </listitem>
1132 </varlistentry>
1133
be1b8568 1134 <varlistentry>
2b9b27c3 1135 <term><option>Debug::sourceList</option></term>
be1b8568
EL
1136
1137 <listitem>
1138 <para>
1139 Print information about the vendors read from
1140 <filename>/etc/apt/vendors.list</filename>.
1141 </para>
1142 </listitem>
1143 </varlistentry>
1144
d82cdf73
MV
1145<!-- 2009/07/11 Currently used nowhere. The corresponding code
1146is commented.
be1b8568
EL
1147 <varlistentry>
1148 <term><literal>Debug::Vendor</literal></term>
1149
1150 <listitem>
1151 <para>
1152 Print information about each vendor.
1153 </para>
1154 </listitem>
1155 </varlistentry>
d82cdf73 1156-->
45df0ad2 1157
be1b8568 1158 </variablelist>
24f6490f
AL
1159 </refsect1>
1160
1161 <refsect1><title>Examples</title>
640c5d94
MZ
1162 <para>&configureindex; is a
1163 configuration file showing example values for all possible
24f6490f
AL
1164 options.</para>
1165 </refsect1>
1166
1167 <refsect1><title>Files</title>
6e2525a1 1168 <variablelist>
1221c3a3 1169 &file-aptconf;
6e2525a1 1170 </variablelist>
24f6490f
AL
1171 </refsect1>
1172
1173 <refsect1><title>See Also</title>
1174 <para>&apt-cache;, &apt-config;<!-- ? reading apt.conf -->, &apt-preferences;.</para>
1175 </refsect1>
1176
1177 &manbugs;
24f6490f
AL
1178
1179</refentry>
1180