0cf4bb663d639d17f658b758522736d10ec4e84b
[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>Check-Valid-Until</term>
234 <listitem><para>Security related option defaulting to true as an
235 expiring validation for a Release file prevents longtime replay attacks
236 and can e.g. also help users to identify no longer updated mirrors -
237 but the feature depends on the correctness of the time on the user system.
238 Archive maintainers are encouraged to create Release files with the
239 <literal>Valid-Until</literal> header, but if they don't or a stricter value
240 is volitional the following <literal>Max-ValidTime</literal> option can be used.
241 </para></listitem>
242 </varlistentry>
243
244 <varlistentry><term>Max-ValidTime</term>
245 <listitem><para>Seconds the Release file should be considered valid after
246 it was created. The default is "for ever" (0) if the Release file of the
247 archive doesn't include a <literal>Valid-Until</literal> header.
248 If it does then this date is the default. The date from the Release file or
249 the date specified by the creation time of the Release file
250 (<literal>Date</literal> header) plus the seconds specified with this
251 options are used to check if the validation of a file has expired by using
252 the earlier date of the two. Archive specific settings can be made by
253 appending the label of the archive to the option name.
254 </para></listitem>
255 </varlistentry>
256
257 <varlistentry><term>PDiffs</term>
258 <listitem><para>Try to download deltas called <literal>PDiffs</literal> for
259 Packages or Sources files instead of downloading whole ones. True
260 by default.</para>
261 <para>Two sub-options to limit the use of PDiffs are also available:
262 With <literal>FileLimit</literal> can be specified how many PDiff files
263 are downloaded at most to patch a file. <literal>SizeLimit</literal>
264 on the other hand is the maximum precentage of the size of all patches
265 compared to the size of the targeted file. If one of these limits is
266 exceeded the complete file is downloaded instead of the patches.
267 </para></listitem>
268 </varlistentry>
269
270 <varlistentry><term>Queue-Mode</term>
271 <listitem><para>Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</literal> or
272 <literal>access</literal> which determines how APT parallelizes outgoing
273 connections. <literal>host</literal> means that one connection per target host
274 will be opened, <literal>access</literal> means that one connection per URI type
275 will be opened.</para></listitem>
276 </varlistentry>
277
278 <varlistentry><term>Retries</term>
279 <listitem><para>Number of retries to perform. If this is non-zero APT will retry failed
280 files the given number of times.</para></listitem>
281 </varlistentry>
282
283 <varlistentry><term>Source-Symlinks</term>
284 <listitem><para>Use symlinks for source archives. If set to true then source archives will
285 be symlinked when possible instead of copying. True is the default.</para></listitem>
286 </varlistentry>
287
288 <varlistentry><term>http</term>
289 <listitem><para>HTTP URIs; http::Proxy is the default http proxy to use. It is in the
290 standard form of <literal>http://[[user][:pass]@]host[:port]/</literal>. Per
291 host proxies can also be specified by using the form
292 <literal>http::Proxy::&lt;host&gt;</literal> with the special keyword <literal>DIRECT</literal>
293 meaning to use no proxies. If no one of the above settings is specified,
294 <envar>http_proxy</envar> environment variable
295 will be used.</para>
296
297 <para>Three settings are provided for cache control with HTTP/1.1 compliant
298 proxy caches. <literal>No-Cache</literal> tells the proxy to not use its cached
299 response under any circumstances, <literal>Max-Age</literal> is sent only for
300 index files and tells the cache to refresh its object if it is older than
301 the given number of seconds. Debian updates its index files daily so the
302 default is 1 day. <literal>No-Store</literal> specifies that the cache should never
303 store this request, it is only set for archive files. This may be useful
304 to prevent polluting a proxy cache with very large .deb files. Note:
305 Squid 2.0.2 does not support any of these options.</para>
306
307 <para>The option <literal>timeout</literal> sets the timeout timer used by the method,
308 this applies to all things including connection timeout and data timeout.</para>
309
310 <para>One setting is provided to control the pipeline depth in cases where the
311 remote server is not RFC conforming or buggy (such as Squid 2.0.2).
312 <literal>Acquire::http::Pipeline-Depth</literal> can be a value from 0 to 5
313 indicating how many outstanding requests APT should send. A value of
314 zero MUST be specified if the remote host does not properly linger
315 on TCP connections - otherwise data corruption will occur. Hosts which
316 require this are in violation of RFC 2068.</para>
317
318 <para>The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</literal>
319 which accepts integer values in kilobyte. The default value is 0 which deactivates
320 the limit and tries uses as much as possible of the bandwidth (Note that this option implicit
321 deactivates the download from multiple servers at the same time.)</para>
322
323 <para><literal>Acquire::http::User-Agent</literal> can be used to set a different
324 User-Agent for the http download method as some proxies allow access for clients
325 only if the client uses a known identifier.</para>
326 </listitem>
327 </varlistentry>
328
329 <varlistentry><term>https</term>
330 <listitem><para>HTTPS URIs. Cache-control, Timeout, AllowRedirect, Dl-Limit and
331 proxy options are the same as for <literal>http</literal> method and will also
332 default to the options from the <literal>http</literal> method if they are not
333 explicitly set for https. <literal>Pipeline-Depth</literal> option is not
334 supported yet.</para>
335
336 <para><literal>CaInfo</literal> suboption specifies place of file that
337 holds info about trusted certificates.
338 <literal>&lt;host&gt;::CaInfo</literal> is corresponding per-host option.
339 <literal>Verify-Peer</literal> boolean suboption determines whether verify
340 server's host certificate against trusted certificates or not.
341 <literal>&lt;host&gt;::Verify-Peer</literal> is corresponding per-host option.
342 <literal>Verify-Host</literal> boolean suboption determines whether verify
343 server's hostname or not.
344 <literal>&lt;host&gt;::Verify-Host</literal> is corresponding per-host option.
345 <literal>SslCert</literal> determines what certificate to use for client
346 authentication. <literal>&lt;host&gt;::SslCert</literal> is corresponding per-host option.
347 <literal>SslKey</literal> determines what private key to use for client
348 authentication. <literal>&lt;host&gt;::SslKey</literal> is corresponding per-host option.
349 <literal>SslForceVersion</literal> overrides default SSL version to use.
350 Can contain 'TLSv1' or 'SSLv3' string.
351 <literal>&lt;host&gt;::SslForceVersion</literal> is corresponding per-host option.
352 </para></listitem></varlistentry>
353
354 <varlistentry><term>ftp</term>
355 <listitem><para>FTP URIs; ftp::Proxy is the default ftp proxy to use. It is in the
356 standard form of <literal>ftp://[[user][:pass]@]host[:port]/</literal>. Per
357 host proxies can also be specified by using the form
358 <literal>ftp::Proxy::&lt;host&gt;</literal> with the special keyword <literal>DIRECT</literal>
359 meaning to use no proxies. If no one of the above settings is specified,
360 <envar>ftp_proxy</envar> environment variable
361 will be used. To use a ftp
362 proxy you will have to set the <literal>ftp::ProxyLogin</literal> script in the
363 configuration file. This entry specifies the commands to send to tell
364 the proxy server what to connect to. Please see
365 &configureindex; for an example of
366 how to do this. The substitution variables available are
367 <literal>$(PROXY_USER)</literal> <literal>$(PROXY_PASS)</literal> <literal>$(SITE_USER)</literal>
368 <literal>$(SITE_PASS)</literal> <literal>$(SITE)</literal> and <literal>$(SITE_PORT)</literal>
369 Each is taken from it's respective URI component.</para>
370
371 <para>The option <literal>timeout</literal> sets the timeout timer used by the method,
372 this applies to all things including connection timeout and data timeout.</para>
373
374 <para>Several settings are provided to control passive mode. Generally it is
375 safe to leave passive mode on, it works in nearly every environment.
376 However some situations require that passive mode be disabled and port
377 mode ftp used instead. This can be done globally, for connections that
378 go through a proxy or for a specific host (See the sample config file
379 for examples).</para>
380
381 <para>It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</envar>
382 environment variable to a http url - see the discussion of the http method
383 above for syntax. You cannot set this in the configuration file and it is
384 not recommended to use FTP over HTTP due to its low efficiency.</para>
385
386 <para>The setting <literal>ForceExtended</literal> controls the use of RFC2428
387 <literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is false, which means
388 these commands are only used if the control connection is IPv6. Setting this
389 to true forces their use even on IPv4 connections. Note that most FTP servers
390 do not support RFC2428.</para></listitem>
391 </varlistentry>
392
393 <varlistentry><term>cdrom</term>
394 <listitem><para>CDROM URIs; the only setting for CDROM URIs is the mount point,
395 <literal>cdrom::Mount</literal> which must be the mount point for the CDROM drive
396 as specified in <filename>/etc/fstab</filename>. It is possible to provide
397 alternate mount and unmount commands if your mount point cannot be listed
398 in the fstab (such as an SMB mount and old mount packages). The syntax
399 is to put <literallayout>/cdrom/::Mount "foo";</literallayout> within
400 the cdrom block. It is important to have the trailing slash. Unmount
401 commands can be specified using UMount.</para></listitem>
402 </varlistentry>
403
404 <varlistentry><term>gpgv</term>
405 <listitem><para>GPGV URIs; the only option for GPGV URIs is the option to pass additional parameters to gpgv.
406 <literal>gpgv::Options</literal> Additional options passed to gpgv.
407 </para></listitem>
408 </varlistentry>
409
410 <varlistentry><term>CompressionTypes</term>
411 <listitem><para>List of compression types which are understood by the acquire methods.
412 Files like <filename>Packages</filename> can be available in various compression formats.
413 Per default the acquire methods can decompress <command>bzip2</command>, <command>lzma</command>
414 and <command>gzip</command> compressed files, with this setting more formats can be added
415 on the fly or the used method can be changed. The syntax for this is:
416 <synopsis>Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> "<replaceable>Methodname</replaceable>";</synopsis>
417 </para><para>Also the <literal>Order</literal> subgroup can be used to define in which order
418 the acquire system will try to download the compressed files. The acquire system will try the first
419 and proceed with the next compression type in this list on error, so to prefer one over the other type
420 simple add the preferred type at first - not already added default types will be added at run time
421 to the end of the list, so e.g. <synopsis>Acquire::CompressionTypes::Order:: "gz";</synopsis> can
422 be used to prefer <command>gzip</command> compressed files over <command>bzip2</command> and <command>lzma</command>.
423 If <command>lzma</command> should be preferred over <command>gzip</command> and <command>bzip2</command> the
424 configure setting should look like this <synopsis>Acquire::CompressionTypes::Order { "lzma"; "gz"; };</synopsis>
425 It is not needed to add <literal>bz2</literal> explicit to the list as it will be added automatic.</para>
426 <para>Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</replaceable></literal> will
427 be checked: If this setting exists the method will only be used if this file exists, e.g. for
428 the bzip2 method (the inbuilt) setting is <literallayout>Dir::Bin::bzip2 "/bin/bzip2";</literallayout>
429 Note also that list entries specified on the command line will be added at the end of the list
430 specified in the configuration files, but before the default entries. To prefer a type in this case
431 over the ones specified in in the configuration files you can set the option direct - not in list style.
432 This will not override the defined list, it will only prefix the list with this type.</para>
433 <para>While it is possible to add an empty compression type to the order list, but APT in its current
434 version doesn't understand it correctly and will display many warnings about not downloaded files -
435 these warnings are most of the time false negatives. Future versions will maybe include a way to
436 really prefer uncompressed files to support the usage of local mirrors.</para></listitem>
437 </varlistentry>
438
439 <varlistentry><term>Languages</term>
440 <listitem><para>The Languages subsection controls which <filename>Translation</filename> files are downloaded
441 and in which order APT tries to display the Description-Translations. APT will try to display the first
442 available Description in the Language which is listed at first. Languages can be defined with their
443 short or long Languagecodes. Note that not all archives provide <filename>Translation</filename>
444 files for every Language - especially the long Languagecodes are rare, so please
445 inform you which ones are available before you set here impossible values.</para>
446 <para>The default list includes "environment" and "en". "<literal>environment</literal>" has a special meaning here:
447 It will be replaced at runtime with the languagecodes extracted from the <literal>LC_MESSAGES</literal> environment variable.
448 It will also ensure that these codes are not included twice in the list. If <literal>LC_MESSAGES</literal>
449 is set to "C" only the <filename>Translation-en</filename> file (if available) will be used.
450 To force apt to use no Translation file use the setting <literal>Acquire::Languages=none</literal>. "<literal>none</literal>"
451 is another special meaning code which will stop the search for a fitting <filename>Translation</filename> file.
452 This can be used by the system administrator to let APT know that it should download also this files without
453 actually use them if the environment doesn't specify this languages. So the following example configuration will
454 result in the order "en, de" in an english and in "de, en" in a german localization. Note that "fr" is downloaded,
455 but not used if APT is not used in a french localization, in such an environment the order would be "fr, de, en".
456 <programlisting>Acquire::Languages { "environment"; "de"; "en"; "none"; "fr"; };</programlisting></para></listitem>
457 </varlistentry>
458
459 </variablelist>
460 </para>
461 </refsect1>
462
463 <refsect1><title>Directories</title>
464
465 <para>The <literal>Dir::State</literal> section has directories that pertain to local
466 state information. <literal>lists</literal> is the directory to place downloaded
467 package lists in and <literal>status</literal> is the name of the dpkg status file.
468 <literal>preferences</literal> is the name of the APT preferences file.
469 <literal>Dir::State</literal> contains the default directory to prefix on all sub
470 items if they do not start with <filename>/</filename> or <filename>./</filename>.</para>
471
472 <para><literal>Dir::Cache</literal> contains locations pertaining to local cache
473 information, such as the two package caches <literal>srcpkgcache</literal> and
474 <literal>pkgcache</literal> as well as the location to place downloaded archives,
475 <literal>Dir::Cache::archives</literal>. Generation of caches can be turned off
476 by setting their names to be blank. This will slow down startup but
477 save disk space. It is probably preferred to turn off the pkgcache rather
478 than the srcpkgcache. Like <literal>Dir::State</literal> the default
479 directory is contained in <literal>Dir::Cache</literal></para>
480
481 <para><literal>Dir::Etc</literal> contains the location of configuration files,
482 <literal>sourcelist</literal> gives the location of the sourcelist and
483 <literal>main</literal> is the default configuration file (setting has no effect,
484 unless it is done from the config file specified by
485 <envar>APT_CONFIG</envar>).</para>
486
487 <para>The <literal>Dir::Parts</literal> setting reads in all the config fragments in
488 lexical order from the directory specified. After this is done then the
489 main config file is loaded.</para>
490
491 <para>Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::Bin::Methods</literal>
492 specifies the location of the method handlers and <literal>gzip</literal>,
493 <literal>bzip2</literal>, <literal>lzma</literal>,
494 <literal>dpkg</literal>, <literal>apt-get</literal> <literal>dpkg-source</literal>
495 <literal>dpkg-buildpackage</literal> and <literal>apt-cache</literal> specify the location
496 of the respective programs.</para>
497
498 <para>
499 The configuration item <literal>RootDir</literal> has a special
500 meaning. If set, all paths in <literal>Dir::</literal> will be
501 relative to <literal>RootDir</literal>, <emphasis>even paths that
502 are specified absolutely</emphasis>. So, for instance, if
503 <literal>RootDir</literal> is set to
504 <filename>/tmp/staging</filename> and
505 <literal>Dir::State::status</literal> is set to
506 <filename>/var/lib/dpkg/status</filename>, then the status file
507 will be looked up in
508 <filename>/tmp/staging/var/lib/dpkg/status</filename>.
509 </para>
510 </refsect1>
511
512 <refsect1><title>APT in DSelect</title>
513 <para>
514 When APT is used as a &dselect; method several configuration directives
515 control the default behaviour. These are in the <literal>DSelect</literal> section.</para>
516
517 <variablelist>
518 <varlistentry><term>Clean</term>
519 <listitem><para>Cache Clean mode; this value may be one of always, prompt, auto,
520 pre-auto and never. always and prompt will remove all packages from
521 the cache after upgrading, prompt (the default) does so conditionally.
522 auto removes only those packages which are no longer downloadable
523 (replaced with a new version for instance). pre-auto performs this
524 action before downloading new packages.</para></listitem>
525 </varlistentry>
526
527 <varlistentry><term>options</term>
528 <listitem><para>The contents of this variable is passed to &apt-get; as command line
529 options when it is run for the install phase.</para></listitem>
530 </varlistentry>
531
532 <varlistentry><term>Updateoptions</term>
533 <listitem><para>The contents of this variable is passed to &apt-get; as command line
534 options when it is run for the update phase.</para></listitem>
535 </varlistentry>
536
537 <varlistentry><term>PromptAfterUpdate</term>
538 <listitem><para>If true the [U]pdate operation in &dselect; will always prompt to continue.
539 The default is to prompt only on error.</para></listitem>
540 </varlistentry>
541 </variablelist>
542 </refsect1>
543
544 <refsect1><title>How APT calls dpkg</title>
545 <para>Several configuration directives control how APT invokes &dpkg;. These are
546 in the <literal>DPkg</literal> section.</para>
547
548 <variablelist>
549 <varlistentry><term>options</term>
550 <listitem><para>This is a list of options to pass to dpkg. The options must be specified
551 using the list notation and each list item is passed as a single argument
552 to &dpkg;.</para></listitem>
553 </varlistentry>
554
555 <varlistentry><term>Pre-Invoke</term><term>Post-Invoke</term>
556 <listitem><para>This is a list of shell commands to run before/after invoking &dpkg;.
557 Like <literal>options</literal> this must be specified in list notation. The
558 commands are invoked in order using <filename>/bin/sh</filename>, should any
559 fail APT will abort.</para></listitem>
560 </varlistentry>
561
562 <varlistentry><term>Pre-Install-Pkgs</term>
563 <listitem><para>This is a list of shell commands to run before invoking dpkg. Like
564 <literal>options</literal> this must be specified in list notation. The commands
565 are invoked in order using <filename>/bin/sh</filename>, should any fail APT
566 will abort. APT will pass to the commands on standard input the
567 filenames of all .deb files it is going to install, one per line.</para>
568
569 <para>Version 2 of this protocol dumps more information, including the
570 protocol version, the APT configuration space and the packages, files
571 and versions being changed. Version 2 is enabled by setting
572 <literal>DPkg::Tools::options::cmd::Version</literal> to 2. <literal>cmd</literal> is a
573 command given to <literal>Pre-Install-Pkgs</literal>.</para></listitem>
574 </varlistentry>
575
576 <varlistentry><term>Run-Directory</term>
577 <listitem><para>APT chdirs to this directory before invoking dpkg, the default is
578 <filename>/</filename>.</para></listitem>
579 </varlistentry>
580
581 <varlistentry><term>Build-options</term>
582 <listitem><para>These options are passed to &dpkg-buildpackage; when compiling packages,
583 the default is to disable signing and produce all binaries.</para></listitem>
584 </varlistentry>
585 </variablelist>
586
587 <refsect2><title>dpkg trigger usage (and related options)</title>
588 <para>APT can call dpkg in a way so it can make aggressive use of triggers over
589 multiply calls of dpkg. Without further options dpkg will use triggers only in between his
590 own run. Activating these options can therefore decrease the time needed to perform the
591 install / upgrade. Note that it is intended to activate these options per default in the
592 future, but as it changes the way APT calling dpkg drastically it needs a lot more testing.
593 <emphasis>These options are therefore currently experimental and should not be used in
594 productive environments.</emphasis> Also it breaks the progress reporting so all frontends will
595 currently stay around half (or more) of the time in the 100% state while it actually configures
596 all packages.</para>
597 <para>Note that it is not guaranteed that APT will support these options or that these options will
598 not cause (big) trouble in the future. If you have understand the current risks and problems with
599 these options, but are brave enough to help testing them create a new configuration file and test a
600 combination of options. Please report any bugs, problems and improvements you encounter and make sure
601 to note which options you have used in your reports. Asking dpkg for help could also be useful for
602 debugging proposes, see e.g. <command>dpkg --audit</command>. A defensive option combination would be
603 <literallayout>DPkg::NoTriggers "true";
604 PackageManager::Configure "smart";
605 DPkg::ConfigurePending "true";
606 DPkg::TriggersPending "true";</literallayout></para>
607
608 <variablelist>
609 <varlistentry><term>DPkg::NoTriggers</term>
610 <listitem><para>Add the no triggers flag to all dpkg calls (except the ConfigurePending call).
611 See &dpkg; if you are interested in what this actually means. In short: dpkg will not run the
612 triggers when this flag is present unless it is explicitly called to do so in an extra call.
613 Note that this option exists (undocumented) also in older apt versions with a slightly different
614 meaning: Previously these option only append --no-triggers to the configure calls to dpkg -
615 now apt will add these flag also to the unpack and remove calls.</para></listitem>
616 </varlistentry>
617 <varlistentry><term>PackageManager::Configure</term>
618 <listitem><para>Valid values are "<literal>all</literal>", "<literal>smart</literal>" and "<literal>no</literal>".
619 "<literal>all</literal>" is the default value and causes APT to configure all packages explicit.
620 The "<literal>smart</literal>" way is it to configure only packages which need to be configured before
621 another package can be unpacked (Pre-Depends) and let the rest configure by dpkg with a call generated
622 by the next option. "<literal>no</literal>" on the other hand will not configure anything and totally
623 rely on dpkg for configuration (which will at the moment fail if a Pre-Depends is encountered).
624 Setting this option to another than the all value will implicitly activate also the next option per
625 default as otherwise the system could end in an unconfigured status which could be unbootable!
626 </para></listitem>
627 </varlistentry>
628 <varlistentry><term>DPkg::ConfigurePending</term>
629 <listitem><para>If this option is set apt will call <command>dpkg --configure --pending</command>
630 to let dpkg handle all required configurations and triggers. This option is activated automatic
631 per default if the previous option is not set to <literal>all</literal>, but deactivating could be useful
632 if you want to run APT multiple times in a row - e.g. in an installer. In these sceneries you could
633 deactivate this option in all but the last run.</para></listitem>
634 </varlistentry>
635 <varlistentry><term>DPkg::TriggersPending</term>
636 <listitem><para>Useful for <literal>smart</literal> configuration as a package which has pending
637 triggers is not considered as <literal>installed</literal> and dpkg treats them as <literal>unpacked</literal>
638 currently which is a dealbreaker for Pre-Dependencies (see debbugs #526774). Note that this will
639 process all triggers, not only the triggers needed to configure this package.</para></listitem>
640 </varlistentry>
641 <varlistentry><term>PackageManager::UnpackAll</term>
642 <listitem><para>As the configuration can be deferred to be done at the end by dpkg it can be
643 tried to order the unpack series only by critical needs, e.g. by Pre-Depends. Default is true
644 and therefore the "old" method of ordering in various steps by everything. While both method
645 were present in earlier APT versions the <literal>OrderCritical</literal> method was unused, so
646 this method is very experimental and needs further improvements before becoming really useful.
647 </para></listitem>
648 </varlistentry>
649 <varlistentry><term>OrderList::Score::Immediate</term>
650 <listitem><para>Essential packages (and there dependencies) should be configured immediately
651 after unpacking. It will be a good idea to do this quite early in the upgrade process as these
652 these configure calls require currently also <literal>DPkg::TriggersPending</literal> which
653 will run quite a few triggers (which maybe not needed). Essentials get per default a high score
654 but the immediate flag is relatively low (a package which has a Pre-Depends is higher rated).
655 These option and the others in the same group can be used to change the scoring. The following
656 example shows the settings with there default values.
657 <literallayout>OrderList::Score {
658 Delete 500;
659 Essential 200;
660 Immediate 10;
661 PreDepends 50;
662 };</literallayout>
663 </para></listitem>
664 </varlistentry>
665 </variablelist>
666 </refsect2>
667 </refsect1>
668
669 <refsect1>
670 <title>Periodic and Archives options</title>
671 <para><literal>APT::Periodic</literal> and <literal>APT::Archives</literal>
672 groups of options configure behavior of apt periodic updates, which is
673 done by <literal>/etc/cron.daily/apt</literal> script. See header of
674 this script for the brief documentation of these options.
675 </para>
676 </refsect1>
677
678 <refsect1>
679 <title>Debug options</title>
680 <para>
681 Enabling options in the <literal>Debug::</literal> section will
682 cause debugging information to be sent to the standard error
683 stream of the program utilizing the <literal>apt</literal>
684 libraries, or enable special program modes that are primarily
685 useful for debugging the behavior of <literal>apt</literal>.
686 Most of these options are not interesting to a normal user, but a
687 few may be:
688
689 <itemizedlist>
690 <listitem>
691 <para>
692 <literal>Debug::pkgProblemResolver</literal> enables output
693 about the decisions made by
694 <literal>dist-upgrade, upgrade, install, remove, purge</literal>.
695 </para>
696 </listitem>
697
698 <listitem>
699 <para>
700 <literal>Debug::NoLocking</literal> disables all file
701 locking. This can be used to run some operations (for
702 instance, <literal>apt-get -s install</literal>) as a
703 non-root user.
704 </para>
705 </listitem>
706
707 <listitem>
708 <para>
709 <literal>Debug::pkgDPkgPM</literal> prints out the actual
710 command line each time that <literal>apt</literal> invokes
711 &dpkg;.
712 </para>
713 </listitem>
714
715 <listitem>
716 <para>
717 <literal>Debug::IdentCdrom</literal> disables the inclusion
718 of statfs data in CDROM IDs. <!-- TODO: provide a
719 motivating example, except I haven't a clue why you'd want
720 to do this. -->
721 </para>
722 </listitem>
723 </itemizedlist>
724 </para>
725
726 <para>
727 A full list of debugging options to apt follows.
728 </para>
729
730 <variablelist>
731 <varlistentry>
732 <term><literal>Debug::Acquire::cdrom</literal></term>
733
734 <listitem>
735 <para>
736 Print information related to accessing
737 <literal>cdrom://</literal> sources.
738 </para>
739 </listitem>
740 </varlistentry>
741
742 <varlistentry>
743 <term><literal>Debug::Acquire::ftp</literal></term>
744
745 <listitem>
746 <para>
747 Print information related to downloading packages using
748 FTP.
749 </para>
750 </listitem>
751 </varlistentry>
752
753 <varlistentry>
754 <term><literal>Debug::Acquire::http</literal></term>
755
756 <listitem>
757 <para>
758 Print information related to downloading packages using
759 HTTP.
760 </para>
761 </listitem>
762 </varlistentry>
763
764 <varlistentry>
765 <term><literal>Debug::Acquire::https</literal></term>
766
767 <listitem>
768 <para>
769 Print information related to downloading packages using
770 HTTPS.
771 </para>
772 </listitem>
773 </varlistentry>
774
775 <varlistentry>
776 <term><literal>Debug::Acquire::gpgv</literal></term>
777
778 <listitem>
779 <para>
780 Print information related to verifying cryptographic
781 signatures using <literal>gpg</literal>.
782 </para>
783 </listitem>
784 </varlistentry>
785
786 <varlistentry>
787 <term><literal>Debug::aptcdrom</literal></term>
788
789 <listitem>
790 <para>
791 Output information about the process of accessing
792 collections of packages stored on CD-ROMs.
793 </para>
794 </listitem>
795 </varlistentry>
796
797 <varlistentry>
798 <term><literal>Debug::BuildDeps</literal></term>
799 <listitem>
800 <para>
801 Describes the process of resolving build-dependencies in
802 &apt-get;.
803 </para>
804 </listitem>
805 </varlistentry>
806
807 <varlistentry>
808 <term><literal>Debug::Hashes</literal></term>
809 <listitem>
810 <para>
811 Output each cryptographic hash that is generated by the
812 <literal>apt</literal> libraries.
813 </para>
814 </listitem>
815 </varlistentry>
816
817 <varlistentry>
818 <term><literal>Debug::IdentCDROM</literal></term>
819 <listitem>
820 <para>
821 Do not include information from <literal>statfs</literal>,
822 namely the number of used and free blocks on the CD-ROM
823 filesystem, when generating an ID for a CD-ROM.
824 </para>
825 </listitem>
826 </varlistentry>
827
828 <varlistentry>
829 <term><literal>Debug::NoLocking</literal></term>
830 <listitem>
831 <para>
832 Disable all file locking. For instance, this will allow
833 two instances of <quote><literal>apt-get
834 update</literal></quote> to run at the same time.
835 </para>
836 </listitem>
837 </varlistentry>
838
839 <varlistentry>
840 <term><literal>Debug::pkgAcquire</literal></term>
841
842 <listitem>
843 <para>
844 Log when items are added to or removed from the global
845 download queue.
846 </para>
847 </listitem>
848 </varlistentry>
849
850 <varlistentry>
851 <term><literal>Debug::pkgAcquire::Auth</literal></term>
852 <listitem>
853 <para>
854 Output status messages and errors related to verifying
855 checksums and cryptographic signatures of downloaded files.
856 </para>
857 </listitem>
858 </varlistentry>
859
860 <varlistentry>
861 <term><literal>Debug::pkgAcquire::Diffs</literal></term>
862 <listitem>
863 <para>
864 Output information about downloading and applying package
865 index list diffs, and errors relating to package index list
866 diffs.
867 </para>
868 </listitem>
869 </varlistentry>
870
871 <varlistentry>
872 <term><literal>Debug::pkgAcquire::RRed</literal></term>
873
874 <listitem>
875 <para>
876 Output information related to patching apt package lists
877 when downloading index diffs instead of full indices.
878 </para>
879 </listitem>
880 </varlistentry>
881
882 <varlistentry>
883 <term><literal>Debug::pkgAcquire::Worker</literal></term>
884
885 <listitem>
886 <para>
887 Log all interactions with the sub-processes that actually
888 perform downloads.
889 </para>
890 </listitem>
891 </varlistentry>
892
893 <varlistentry>
894 <term><literal>Debug::pkgAutoRemove</literal></term>
895
896 <listitem>
897 <para>
898 Log events related to the automatically-installed status of
899 packages and to the removal of unused packages.
900 </para>
901 </listitem>
902 </varlistentry>
903
904 <varlistentry>
905 <term><literal>Debug::pkgDepCache::AutoInstall</literal></term>
906 <listitem>
907 <para>
908 Generate debug messages describing which packages are being
909 automatically installed to resolve dependencies. This
910 corresponds to the initial auto-install pass performed in,
911 e.g., <literal>apt-get install</literal>, and not to the
912 full <literal>apt</literal> dependency resolver; see
913 <literal>Debug::pkgProblemResolver</literal> for that.
914 </para>
915 </listitem>
916 </varlistentry>
917
918 <varlistentry>
919 <term><literal>Debug::pkgDepCache::Marker</literal></term>
920 <listitem>
921 <para>
922 Generate debug messages describing which package is marked
923 as keep/install/remove while the ProblemResolver does his work.
924 Each addition or deletion may trigger additional actions;
925 they are shown indented two additional space under the original entry.
926 The format for each line is <literal>MarkKeep</literal>,
927 <literal>MarkDelete</literal> or <literal>MarkInstall</literal> followed by
928 <literal>package-name &lt;a.b.c -&gt; d.e.f | x.y.z&gt; (section)</literal>
929 where <literal>a.b.c</literal> is the current version of the package,
930 <literal>d.e.f</literal> is the version considered for installation and
931 <literal>x.y.z</literal> is a newer version, but not considered for installation
932 (because of a low pin score). The later two can be omitted if there is none or if
933 it is the same version as the installed.
934 <literal>section</literal> is the name of the section the package appears in.
935 </para>
936 </listitem>
937 </varlistentry>
938
939 <!-- Question: why doesn't this do anything? The code says it should. -->
940 <varlistentry>
941 <term><literal>Debug::pkgInitConfig</literal></term>
942 <listitem>
943 <para>
944 Dump the default configuration to standard error on
945 startup.
946 </para>
947 </listitem>
948 </varlistentry>
949
950 <varlistentry>
951 <term><literal>Debug::pkgDPkgPM</literal></term>
952 <listitem>
953 <para>
954 When invoking &dpkg;, output the precise command line with
955 which it is being invoked, with arguments separated by a
956 single space character.
957 </para>
958 </listitem>
959 </varlistentry>
960
961 <varlistentry>
962 <term><literal>Debug::pkgDPkgProgressReporting</literal></term>
963 <listitem>
964 <para>
965 Output all the data received from &dpkg; on the status file
966 descriptor and any errors encountered while parsing it.
967 </para>
968 </listitem>
969 </varlistentry>
970
971 <varlistentry>
972 <term><literal>Debug::pkgOrderList</literal></term>
973
974 <listitem>
975 <para>
976 Generate a trace of the algorithm that decides the order in
977 which <literal>apt</literal> should pass packages to
978 &dpkg;.
979 </para>
980 </listitem>
981 </varlistentry>
982
983 <varlistentry>
984 <term><literal>Debug::pkgPackageManager</literal></term>
985
986 <listitem>
987 <para>
988 Output status messages tracing the steps performed when
989 invoking &dpkg;.
990 </para>
991 </listitem>
992 </varlistentry>
993
994 <varlistentry>
995 <term><literal>Debug::pkgPolicy</literal></term>
996
997 <listitem>
998 <para>
999 Output the priority of each package list on startup.
1000 </para>
1001 </listitem>
1002 </varlistentry>
1003
1004 <varlistentry>
1005 <term><literal>Debug::pkgProblemResolver</literal></term>
1006
1007 <listitem>
1008 <para>
1009 Trace the execution of the dependency resolver (this
1010 applies only to what happens when a complex dependency
1011 problem is encountered).
1012 </para>
1013 </listitem>
1014 </varlistentry>
1015
1016 <varlistentry>
1017 <term><literal>Debug::pkgProblemResolver::ShowScores</literal></term>
1018 <listitem>
1019 <para>
1020 Display a list of all installed packages with their calculated score
1021 used by the pkgProblemResolver. The description of the package
1022 is the same as described in <literal>Debug::pkgDepCache::Marker</literal>
1023 </para>
1024 </listitem>
1025 </varlistentry>
1026
1027 <varlistentry>
1028 <term><literal>Debug::sourceList</literal></term>
1029
1030 <listitem>
1031 <para>
1032 Print information about the vendors read from
1033 <filename>/etc/apt/vendors.list</filename>.
1034 </para>
1035 </listitem>
1036 </varlistentry>
1037
1038 <!-- 2009/07/11 Currently used nowhere. The corresponding code
1039 is commented.
1040 <varlistentry>
1041 <term><literal>Debug::Vendor</literal></term>
1042
1043 <listitem>
1044 <para>
1045 Print information about each vendor.
1046 </para>
1047 </listitem>
1048 </varlistentry>
1049 -->
1050
1051 </variablelist>
1052 </refsect1>
1053
1054 <refsect1><title>Examples</title>
1055 <para>&configureindex; is a
1056 configuration file showing example values for all possible
1057 options.</para>
1058 </refsect1>
1059
1060 <refsect1><title>Files</title>
1061 <variablelist>
1062 &file-aptconf;
1063 </variablelist>
1064 </refsect1>
1065
1066 <refsect1><title>See Also</title>
1067 <para>&apt-cache;, &apt-config;<!-- ? reading apt.conf -->, &apt-preferences;.</para>
1068 </refsect1>
1069
1070 &manbugs;
1071
1072 </refentry>
1073