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