sources.list.5.xml 11 KB

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