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