sources.list.5.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. <?xml version="1.0" encoding="utf-8" standalone="no"?>
  2. <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  4. <!ENTITY % aptent SYSTEM "apt.ent"> %aptent;
  5. <!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment;
  6. <!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor;
  7. ]>
  8. <refentry>
  9. <refentryinfo>
  10. &apt-author.jgunthorpe;
  11. &apt-author.team;
  12. &apt-email;
  13. &apt-product;
  14. <!-- The last update date -->
  15. <date>2014-01-18T00:00:00Z</date>
  16. </refentryinfo>
  17. <refmeta>
  18. <refentrytitle>sources.list</refentrytitle>
  19. <manvolnum>5</manvolnum>
  20. <refmiscinfo class="manual">APT</refmiscinfo>
  21. </refmeta>
  22. <!-- Man page title -->
  23. <refnamediv>
  24. <refname>sources.list</refname>
  25. <refpurpose>List of configured APT data sources</refpurpose>
  26. </refnamediv>
  27. <refsect1><title>Description</title>
  28. <para>
  29. The source list <filename>/etc/apt/sources.list</filename> is designed to support
  30. any number of active sources and a variety of source media. The file lists one
  31. source per line, with the most preferred source listed first. The information available
  32. from the configured sources is acquired by <command>apt-get update</command>
  33. (or by an equivalent command from another APT front-end).
  34. </para>
  35. <para>
  36. Each line specifying a source starts with type (e.g. <literal>deb-src</literal>)
  37. followed by options and arguments for this type.
  38. Individual entries cannot be continued onto a following line. Empty lines
  39. are ignored, and a <literal>#</literal> character anywhere on a line marks
  40. the remainder of that line as a comment.
  41. </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, unless that
  51. file matches a pattern in the <literal>Dir::Ignore-Files-Silently</literal>
  52. configuration list - in which 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 references a typical two-level Debian
  56. archive, <filename>distribution/component</filename>. The
  57. <literal>distribution</literal> is generally an archive name 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 references 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 suite [component1] [component2] [...]</literallayout>
  68. <para>Alternatively a rfc822 style format is also supported:
  69. <literallayout>
  70. Types: deb deb-src
  71. URIs: http://example.com
  72. Suites: stable testing
  73. Sections: component1 component2
  74. Description: short
  75. long long long
  76. [option1]: [option1-value]
  77. Types: deb
  78. URIs: http://another.example.com
  79. Suites: experimental
  80. Sections: component1 component2
  81. Enabled: no
  82. Description: short
  83. long long long
  84. [option1]: [option1-value]
  85. </literallayout>
  86. </para>
  87. <para>The URI for the <literal>deb</literal> type must specify the base of the
  88. Debian distribution, from which APT will find the information it needs.
  89. <literal>suite</literal> can specify an exact path, in which case the
  90. components must be omitted and <literal>suite</literal> must end with
  91. a slash (<literal>/</literal>). This is useful for the case when only a
  92. particular sub-section of the archive denoted by the URI is of interest.
  93. If <literal>suite</literal> does not specify an exact path, at least
  94. one <literal>component</literal> must be present.</para>
  95. <para><literal>suite</literal> may also contain a variable,
  96. <literal>$(ARCH)</literal>
  97. which expands to the Debian architecture (such as <literal>amd64</literal> or
  98. <literal>armel</literal>) used on the system. This permits architecture-independent
  99. <filename>sources.list</filename> files to be used. In general this is only
  100. of interest when specifying an exact path, <literal>APT</literal> will
  101. automatically generate a URI with the current architecture otherwise.</para>
  102. <para>In the traditional style sources.list format since only one
  103. distribution can be specified per line it may be necessary to have
  104. multiple lines for the same URI, if a subset of all available
  105. distributions or components at that location is desired. APT will
  106. sort the URI list after it has generated a complete set internally,
  107. and will collapse multiple references to the same Internet host,
  108. for instance, into a single connection, so that it does not
  109. inefficiently establish an FTP connection, close it, do something
  110. else, and then re-establish a connection to that same host. This
  111. feature is useful for accessing busy FTP sites with limits on the
  112. number of simultaneous anonymous users. APT also parallelizes
  113. connections to different hosts to more effectively deal with sites
  114. with low bandwidth.</para>
  115. <para><literal>options</literal> is always optional and needs to be surrounded by
  116. square brackets. It can consist of multiple settings in the form
  117. <literal><replaceable>setting</replaceable>=<replaceable>value</replaceable></literal>.
  118. Multiple settings are separated by spaces. The following settings are supported by APT
  119. (note however that unsupported settings will be ignored silently):
  120. <itemizedlist>
  121. <listitem><para><literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</replaceable>,…</literal>
  122. can be used to specify for which architectures information should
  123. be downloaded. If this option is not set all architectures defined by the
  124. <literal>APT::Architectures</literal> option will be downloaded.</para></listitem>
  125. <listitem><para><literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</replaceable>,…</literal>
  126. and <literal>arch-=<replaceable>arch1</replaceable>,<replaceable>arch2</replaceable>,…</literal>
  127. which can be used to add/remove architectures from the set which will be downloaded.</para></listitem>
  128. <listitem><para><literal>trusted=yes</literal> can be set to indicate that packages
  129. from this source are always authenticated even if the <filename>Release</filename> file
  130. is not signed or the signature can't be checked. This disables parts of &apt-secure;
  131. and should therefore only be used in a local and trusted context. <literal>trusted=no</literal>
  132. is the opposite which handles even correctly authenticated sources as not authenticated.</para></listitem>
  133. </itemizedlist></para>
  134. <para>It is important to list sources in order of preference, with the most
  135. preferred source listed first. Typically this will result in sorting
  136. by speed from fastest to slowest (CD-ROM followed by hosts on a local
  137. network, followed by distant Internet hosts, for example).</para>
  138. <para>Some examples:</para>
  139. <literallayout>
  140. deb http://ftp.debian.org/debian &stable-codename; main contrib non-free
  141. deb http://security.debian.org/ &stable-codename;/updates main contrib non-free
  142. </literallayout>
  143. </refsect1>
  144. <refsect1><title>URI specification</title>
  145. <para>The currently recognized URI types are:
  146. <variablelist>
  147. <varlistentry><term><command>file</command></term>
  148. <listitem><para>
  149. The file scheme allows an arbitrary directory in the file system to be
  150. considered an archive. This is useful for NFS mounts and local mirrors or
  151. archives.</para></listitem>
  152. </varlistentry>
  153. <varlistentry><term><command>cdrom</command></term>
  154. <listitem><para>
  155. The cdrom scheme allows APT to use a local CD-ROM drive with media
  156. swapping. Use the &apt-cdrom; program to create cdrom entries in the
  157. source list.</para></listitem>
  158. </varlistentry>
  159. <varlistentry><term><command>http</command></term>
  160. <listitem><para>
  161. The http scheme specifies an HTTP server for the archive. If an environment
  162. variable <envar>http_proxy</envar> is set with the format
  163. http://server:port/, the proxy server specified in
  164. <envar>http_proxy</envar> will be used. Users of authenticated
  165. HTTP/1.1 proxies may use a string of the format
  166. http://user:pass@server:port/.
  167. Note that this is an insecure method of authentication.</para></listitem>
  168. </varlistentry>
  169. <varlistentry><term><command>ftp</command></term>
  170. <listitem><para>
  171. The ftp scheme specifies an FTP server for the archive. APT's FTP behavior
  172. is highly configurable; for more information see the
  173. &apt-conf; manual page. Please note that an FTP proxy can be specified
  174. by using the <envar>ftp_proxy</envar> environment variable. It is possible
  175. to specify an HTTP proxy (HTTP proxy servers often understand FTP URLs)
  176. using this environment variable and <emphasis>only</emphasis> this
  177. environment variable. Proxies using HTTP specified in
  178. the configuration file will be ignored.</para></listitem>
  179. </varlistentry>
  180. <varlistentry><term><command>copy</command></term>
  181. <listitem><para>
  182. The copy scheme is identical to the file scheme except that packages are
  183. copied into the cache directory instead of used directly at their location.
  184. This is useful for people using removable media to copy files around with APT.</para></listitem>
  185. </varlistentry>
  186. <varlistentry><term><command>rsh</command></term><term><command>ssh</command></term>
  187. <listitem><para>
  188. The rsh/ssh method invokes RSH/SSH to connect to a remote host and
  189. access the files as a given user. Prior configuration of rhosts or RSA keys
  190. is recommended. The standard <command>find</command> and <command>dd</command>
  191. commands are used to perform the file transfers from the remote host.
  192. </para></listitem>
  193. </varlistentry>
  194. <varlistentry><term>adding more recognizable URI types</term>
  195. <listitem><para>
  196. APT can be extended with more methods shipped in other optional packages, which should
  197. follow the naming scheme <package>apt-transport-<replaceable>method</replaceable></package>.
  198. For instance, the APT team also maintains the package <package>apt-transport-https</package>,
  199. which provides access methods for HTTPS URIs with features similar to the http method.
  200. Methods for using e.g. debtorrent are also available - see &apt-transport-debtorrent;.
  201. </para></listitem>
  202. </varlistentry>
  203. </variablelist>
  204. </para>
  205. </refsect1>
  206. <refsect1><title>Examples</title>
  207. <para>Uses the archive stored locally (or NFS mounted) at /home/jason/debian
  208. for stable/main, stable/contrib, and stable/non-free.</para>
  209. <literallayout>deb file:/home/jason/debian stable main contrib non-free</literallayout>
  210. <para>As above, except this uses the unstable (development) distribution.</para>
  211. <literallayout>deb file:/home/jason/debian unstable main contrib non-free</literallayout>
  212. <para>Source line for the above</para>
  213. <literallayout>deb-src file:/home/jason/debian unstable main contrib non-free</literallayout>
  214. <para>The first line gets package information for the architectures in <literal>APT::Architectures</literal>
  215. while the second always retrieves <literal>amd64</literal> and <literal>armel</literal>.</para>
  216. <literallayout>deb http://ftp.debian.org/debian &stable-codename; main
  217. deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main</literallayout>
  218. <para>Uses HTTP to access the archive at archive.debian.org, and uses only
  219. the hamm/main area.</para>
  220. <literallayout>deb http://archive.debian.org/debian-archive hamm main</literallayout>
  221. <para>Uses FTP to access the archive at ftp.debian.org, under the debian
  222. directory, and uses only the &stable-codename;/contrib area.</para>
  223. <literallayout>deb ftp://ftp.debian.org/debian &stable-codename; contrib</literallayout>
  224. <para>Uses FTP to access the archive at ftp.debian.org, under the debian
  225. directory, and uses only the unstable/contrib area. If this line appears as
  226. well as the one in the previous example in <filename>sources.list</filename>
  227. a single FTP session will be used for both resource lines.</para>
  228. <literallayout>deb ftp://ftp.debian.org/debian unstable contrib</literallayout>
  229. <para>Uses HTTP to access the archive at ftp.tlh.debian.org, under the
  230. universe directory, and uses only files found under
  231. <filename>unstable/binary-i386</filename> on i386 machines,
  232. <filename>unstable/binary-amd64</filename> on amd64, and so
  233. forth for other supported architectures. [Note this example only
  234. illustrates how to use the substitution variable; official debian
  235. archives are not structured like this]
  236. <literallayout>deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/</literallayout>
  237. </para>
  238. </refsect1>
  239. <refsect1><title>See Also</title>
  240. <para>&apt-cache; &apt-conf;
  241. </para>
  242. </refsect1>
  243. &manbugs;
  244. </refentry>