sources.list.5.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  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. <!ENTITY % aptent SYSTEM "apt.ent">
  5. %aptent;
  6. <!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent">
  7. %aptverbatiment;
  8. ]>
  9. <refentry>
  10. <refentryinfo>
  11. &apt-author.jgunthorpe;
  12. &apt-author.team;
  13. &apt-email;
  14. &apt-product;
  15. <!-- The last update date -->
  16. <date>2004-02-29T00:00:00Z</date>
  17. </refentryinfo>
  18. <refmeta>
  19. <refentrytitle>sources.list</refentrytitle>
  20. <manvolnum>5</manvolnum>
  21. <refmiscinfo class="manual">APT</refmiscinfo>
  22. </refmeta>
  23. <!-- Man page title -->
  24. <refnamediv>
  25. <refname>sources.list</refname>
  26. <refpurpose>Package resource list for APT</refpurpose>
  27. </refnamediv>
  28. <refsect1><title>Description</title>
  29. <para>The package resource list is used to locate archives of the package
  30. distribution system in use on the system. At this time, this manual page
  31. documents only the packaging system used by the Debian GNU/Linux system.
  32. This control file is <filename>/etc/apt/sources.list</filename>.</para>
  33. <para>The source list is designed to support any number of active sources and a
  34. variety of source media. The file lists one source per line, with the
  35. most preferred source listed first. The format of each line is:
  36. <literal>type uri args</literal> The first item, <literal>type</literal>
  37. determines the format for <literal>args</literal>. <literal>uri</literal> is
  38. a Universal Resource Identifier
  39. (URI), which is a superset of the more specific and well-known Universal
  40. Resource Locator, or URL. The rest of the line can be marked as a comment
  41. by using a #.</para>
  42. </refsect1>
  43. <refsect1><title>sources.list.d</title>
  44. <para>The <filename>/etc/apt/sources.list.d</filename> directory provides
  45. a way to add sources.list entries in separate files.
  46. The format is the same as for the regular <filename>sources.list</filename> file.
  47. File names need to end with
  48. <filename>.list</filename> and may only contain letters (a-z and A-Z),
  49. digits (0-9), underscore (_), hyphen (-) and period (.) characters.
  50. Otherwise APT will print a notice that it has ignored a file if the file
  51. doesn't match a pattern in the <literal>Dir::Ignore-Files-Silently</literal>
  52. configuration list - in this case it will be silently ignored.</para>
  53. </refsect1>
  54. <refsect1><title>The deb and deb-src types</title>
  55. <para>The <literal>deb</literal> type describes a typical two-level Debian
  56. archive, <filename>distribution/component</filename>. Typically,
  57. <literal>distribution</literal> is generally an archivename like
  58. <literal>stable</literal> or <literal>testing</literal> or a codename like
  59. <literal>&stable-codename;</literal> or <literal>&testing-codename;</literal>
  60. while component is one of <literal>main</literal> <literal>contrib</literal> or
  61. <literal>non-free</literal>. The
  62. <literal>deb-src</literal> type describes a debian distribution's source
  63. code in the same form as the <literal>deb</literal> type.
  64. A <literal>deb-src</literal> line is required to fetch source indexes.</para>
  65. <para>The format for a <filename>sources.list</filename> entry using the
  66. <literal>deb</literal> and <literal>deb-src</literal> types is:</para>
  67. <literallayout>deb [ options ] uri distribution [component1] [component2] [...]</literallayout>
  68. <para>The URI for the <literal>deb</literal> type must specify the base of the
  69. Debian distribution, from which APT will find the information it needs.
  70. <literal>distribution</literal> can specify an exact path, in which case the
  71. components must be omitted and <literal>distribution</literal> must end with
  72. a slash (/). This is useful for when the case only a particular sub-section of the
  73. archive denoted by the URI is of interest.
  74. If <literal>distribution</literal> does not specify an exact path, at least
  75. one <literal>component</literal> must be present.</para>
  76. <para><literal>distribution</literal> may also contain a variable,
  77. <literal>$(ARCH)</literal>
  78. which expands to the Debian architecture (i386, m68k, powerpc, ...)
  79. used on the system. This permits architecture-independent
  80. <filename>sources.list</filename> files to be used. In general this is only
  81. of interest when specifying an exact path, <literal>APT</literal> will
  82. automatically generate a URI with the current architecture otherwise.</para>
  83. <para>Since only one distribution can be specified per line it may be necessary
  84. to have multiple lines for the same URI, if a subset of all available
  85. distributions or components at that location is desired.
  86. APT will sort the URI list after it has generated a complete set
  87. internally, and will collapse multiple references to the same Internet
  88. host, for instance, into a single connection, so that it does not
  89. inefficiently establish an FTP connection, close it, do something else,
  90. and then re-establish a connection to that same host. This feature is
  91. useful for accessing busy FTP sites with limits on the number of
  92. simultaneous anonymous users. APT also parallelizes connections to
  93. different hosts to more effectively deal with sites with low bandwidth.</para>
  94. <para><literal>options</literal> is always optional and needs to be surounded by
  95. square brackets. It can consist of multiple settings in the form
  96. <literal><replaceable>setting</replaceable>=<replaceable>value</replaceable></literal>.
  97. Multiple settings are separated by spaces. The following settings are supported by APT,
  98. note though that unsupported settings will be ignored silently:
  99. <itemizedlist><listitem><para><literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</replaceable>,…</literal>
  100. can be used to specify for which architectures packages information should
  101. be downloaded. If this option is not set all architectures defined by the
  102. <literal>APT::Architectures</literal> option will be downloaded.</para></listitem>
  103. <listitem><para><literal>trusted=yes</literal> can be set to indicate that packages
  104. from this source are always authenticated even if the <filename>Release</filename> file
  105. is not signed or the signature can't be checked. This disables parts of &apt-secure;
  106. and should therefore only be used in a local and trusted context. <literal>trusted=no</literal>
  107. is the opposite which handles even correctly authenticated sources as not authenticated.</para></listitem>
  108. </itemizedlist></para>
  109. <para>It is important to list sources in order of preference, with the most
  110. preferred source listed first. Typically this will result in sorting
  111. by speed from fastest to slowest (CD-ROM followed by hosts on a local
  112. network, followed by distant Internet hosts, for example).</para>
  113. <para>Some examples:</para>
  114. <literallayout>
  115. deb http://ftp.debian.org/debian &stable-codename; main contrib non-free
  116. deb http://security.debian.org/ &stable-codename;/updates main contrib non-free
  117. </literallayout>
  118. </refsect1>
  119. <refsect1><title>URI specification</title>
  120. <para>The currently recognized URI types are:
  121. <variablelist>
  122. <varlistentry><term><command>file</command></term>
  123. <listitem><para>
  124. The file scheme allows an arbitrary directory in the file system to be
  125. considered an archive. This is useful for NFS mounts and local mirrors or
  126. archives.</para></listitem>
  127. </varlistentry>
  128. <varlistentry><term><command>cdrom</command></term>
  129. <listitem><para>
  130. The cdrom scheme allows APT to use a local CDROM drive with media
  131. swapping. Use the &apt-cdrom; program to create cdrom entries in the
  132. source list.</para></listitem>
  133. </varlistentry>
  134. <varlistentry><term><command>http</command></term>
  135. <listitem><para>
  136. The http scheme specifies an HTTP server for the archive. If an environment
  137. variable <envar>http_proxy</envar> is set with the format
  138. http://server:port/, the proxy server specified in
  139. <envar>http_proxy</envar> will be used. Users of authenticated
  140. HTTP/1.1 proxies may use a string of the format
  141. http://user:pass@server:port/.
  142. Note that this is an insecure method of authentication.</para></listitem>
  143. </varlistentry>
  144. <varlistentry><term><command>ftp</command></term>
  145. <listitem><para>
  146. The ftp scheme specifies an FTP server for the archive. APT's FTP behavior
  147. is highly configurable; for more information see the
  148. &apt-conf; manual page. Please note that a ftp proxy can be specified
  149. by using the <envar>ftp_proxy</envar> environment variable. It is possible
  150. to specify a http proxy (http proxy servers often understand ftp urls)
  151. using this method and ONLY this method. ftp proxies using http specified in
  152. the configuration file will be ignored.</para></listitem>
  153. </varlistentry>
  154. <varlistentry><term><command>copy</command></term>
  155. <listitem><para>
  156. The copy scheme is identical to the file scheme except that packages are
  157. copied into the cache directory instead of used directly at their location.
  158. This is useful for people using a zip disk to copy files around with APT.</para></listitem>
  159. </varlistentry>
  160. <varlistentry><term><command>rsh</command></term><term><command>ssh</command></term>
  161. <listitem><para>
  162. The rsh/ssh method invokes rsh/ssh to connect to a remote host
  163. as a given user and access the files. It is a good idea to do prior
  164. arrangements with RSA keys or rhosts.
  165. Access to files on the remote uses standard <command>find</command> and
  166. <command>dd</command>
  167. commands to perform the file transfers from the remote.</para></listitem>
  168. </varlistentry>
  169. <varlistentry><term>adding more recognizable URI types</term>
  170. <listitem><para>
  171. APT can be extended with more methods shipped in other optional packages which should
  172. follow the nameing scheme <package>apt-transport-<replaceable>method</replaceable></package>.
  173. The APT team e.g. maintains also the <package>apt-transport-https</package> package which
  174. provides access methods for https-URIs with features similar to the http method, but other
  175. methods for using e.g. debtorrent are also available, see &apt-transport-debtorrent;.
  176. </para></listitem>
  177. </varlistentry>
  178. </variablelist>
  179. </para>
  180. </refsect1>
  181. <refsect1><title>Examples</title>
  182. <para>Uses the archive stored locally (or NFS mounted) at /home/jason/debian
  183. for stable/main, stable/contrib, and stable/non-free.</para>
  184. <literallayout>deb file:/home/jason/debian stable main contrib non-free</literallayout>
  185. <para>As above, except this uses the unstable (development) distribution.</para>
  186. <literallayout>deb file:/home/jason/debian unstable main contrib non-free</literallayout>
  187. <para>Source line for the above</para>
  188. <literallayout>deb-src file:/home/jason/debian unstable main contrib non-free</literallayout>
  189. <para>The first line gets package information for the architectures in <literal>APT::Architectures</literal>
  190. while the second always retrieves <literal>amd64</literal> and <literal>armel</literal>.</para>
  191. <literallayout>deb http://ftp.debian.org/debian &stable-codename; main
  192. deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main</literallayout>
  193. <para>Uses HTTP to access the archive at archive.debian.org, and uses only
  194. the hamm/main area.</para>
  195. <literallayout>deb http://archive.debian.org/debian-archive hamm main</literallayout>
  196. <para>Uses FTP to access the archive at ftp.debian.org, under the debian
  197. directory, and uses only the &stable-codename;/contrib area.</para>
  198. <literallayout>deb ftp://ftp.debian.org/debian &stable-codename; contrib</literallayout>
  199. <para>Uses FTP to access the archive at ftp.debian.org, under the debian
  200. directory, and uses only the unstable/contrib area. If this line appears as
  201. well as the one in the previous example in <filename>sources.list</filename>
  202. a single FTP session will be used for both resource lines.</para>
  203. <literallayout>deb ftp://ftp.debian.org/debian unstable contrib</literallayout>
  204. <para>Uses HTTP to access the archive at ftp.tlh.debian.org, under the
  205. universe directory, and uses only files found under
  206. <filename>unstable/binary-i386</filename> on i386 machines,
  207. <filename>unstable/binary-amd64</filename> on amd64, and so
  208. forth for other supported architectures. [Note this example only
  209. illustrates how to use the substitution variable; official debian
  210. archives are not structured like this]
  211. <literallayout>deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/</literallayout>
  212. </para>
  213. </refsect1>
  214. <refsect1><title>See Also</title>
  215. <para>&apt-cache; &apt-conf;
  216. </para>
  217. </refsect1>
  218. &manbugs;
  219. </refentry>