summaryrefslogtreecommitdiff
path: root/doc/sources.list.5
blob: 779f216bf30c3064335a222fbe9a780012744888 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
.\" $Id: sources.list.5,v 1.1 1998/07/02 02:58:12 jgg Exp $
.\" This manpage is copyright (C) 1998 Branden Robinson <branden@debian.org>.
.\" 
.\" This is free software; you may redistribute it and/or modify
.\" it under the terms of the GNU General Public License as
.\" published by the Free Software Foundation; either version 2,
.\" or (at your option) any later version.
.\"
.\" This is distributed in the hope that it will be useful, but
.\" WITHOUT ANY WARRANTY; without even the implied warranty of
.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
.\" GNU General Public License for more details.
.\"
.\" You should have received a copy of the GNU General Public
.\" License along with APT; if not, write to the Free Software
.\" Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 
.\" 02111-1307 USA
.TH sources.list 5 "16 June 1998" "Debian GNU/Linux"
.SH NAME
sources.list \- package resource list for APT
.SH DESCRIPTION
The package resource list is used to locate archives of the package
distribution system in use on the system. At this time, this manual page
documents only the packaging system used by the Debian GNU/Linux system.
.PP
The source list is designed to support any number of active sources and a
variety of source media. The file lists one source per line, with the
most preferred source listed first. The format of each line is:
.I type uri args
The first item,
.IR type ,
determines the format for
.IR args .
.I uri
is a Universal Resource Identifier (URI), which is a superset of the more
specific and well-known Universal Resource Locator, or URL.
.SS The deb type
The
.B deb
type describes a typical two-level Debian archive,
.IR distribution / component .
Typically,
.I distribution
is one of
.BR stable ,
.BR unstable ,
or
.BR frozen ,
while component is one of
.BR main ,
.BR contrib ,
.BR non-free ,
or
.BR non-us .
The format for a
.I sources.list
entry using the
.B deb
type is:
.RS
deb
.I uri distribution
.RI [ component
.I ...
]
.RE
The URI for the
.B deb
type must specify the base of the Debian distribution, from which
.B APT
will find the information it needs.
.I distribution
can specify an exact path, in which case the
.IR component s
must be omitted and
.I distribution
must end with a slash (/). This is useful for when only a particular
sub-section of the archive denoted by the URI is of interest.
If
.I distribution
does not specify an exact path, at least one
.I component
must be present.
.PP
.I distribution
may also contain a variable, 
.BR $(ARCH) ,
which expands to the Debian architecture (i386, m68k, powerpc, ...)     
used on the system. This permits archiecture-independent                
.I sources.list
files to be used.
.PP
Since only one distribution can be specified per line it may be necessary
to have multiple lines for the same URI, if a subset of all available
distributions or components at that location is desired.
.B APT
will sort the URI list after it has generated a complete set internally,
and will collapse multiple references to the same Internet host, for
instance, into a single connection, so that it does not inefficiently
establish an FTP connection, close it, do something else, and then
re-establish a connection to that same host. This feature is useful
for accessing busy FTP sites with limits on the number of simultaneous
anonymous users.
.PP
It is important to list sources in order of preference, with the most
preferred source listed first. Typically this will result in sorting
by speed from fastest to slowest (CD-ROM followed by hosts on a local
network, followed by distant Internet hosts, for example).
.SS URI specification
The three currently recognized URI types are file, http, and ftp.
.IP file
The file scheme allows an arbitrary directory in the file system to be
considered an archive. This is useful for NFS mounts and local mirrors or
archives.
.IP http
The http scheme specifies an HTTP server for the archive. If an environment
variable
.B $http_proxy
is set with the format
.\" Ugly hackery ahead, nroff doesn't like three different typefaces in a
.\" row with no spaces between anything.
.BI http:// server : port /\c
, the proxy server specified in
.B $http_proxy
will be used. Users of
authenticated HTTP/1.1 proxies may use a string of the format
.BI http:// user : pass @ server : port /\c
.\" For some reason, starting the next line with \. didn't work. So we kludge.
\&. Note that this is an insecure method of authentication.
.IP ftp
The ftp scheme specifies an FTP server for the archive. APT's FTP behavior
is highly configurable; for more information see the
.BR ftp.conf (5)
manual page.
.SH EXAMPLES
.IP "deb file:/home/jason/debian stable main contrib non-free"
Uses the archive stored locally (or NFS mounted) at
.I /home/jason/debian
for stable/main, stable/contrib, and stable/non-free.
.IP "deb file:/home/jason/debian unstable main contrib non-free"
As above, except this uses the unstable (development) distribution.
.IP "deb http://www.debian.org/archive stable main"
Uses HTTP to access the archive at www.debian.org, and uses only the
stable/main area.
.IP "deb ftp://ftp.debian.org/debian stable contrib"
Uses FTP to access the archive at ftp.debian.org, under the debian
directory, and uses only the stable/contrib area.
.IP "deb ftp://ftp.debian.org/debian unstable contrib"
Uses FTP to access the archive at ftp.debian.org, under the debian
directory, and uses only the unstable/contrib area. If this line appears as
well as the one in the previous example in
.IR sources.list ,
a single FTP session will be used for both resource lines.
.IP "deb ftp://nonus.debian.org/debian-non-US unstable/binary-i386/"
Uses FTP to access the archive at nonus.debian.org, under the debian-non-US
directory, and uses only files found under unstable/binary-i386.
.IP "deb http://ftp.de.debian.org/debian-non-US unstable/binary-$(ARCH)/"
Uses HTTP to access the archive at nonus.debian.org, under the
debian-non-US directory, and uses only files found under
unstable/binary-i386 on i386 machines, unstable/binary-m68k on m68k, and so
forth for other supported architectures.
.SH SEE ALSO
.BR apt (8),
.BR apt-cache (8),
.BR apt-get (8),
.BR ftp.conf (5)
.SH BUGS
See <http://www.debian.org/Bugs/db/pa/lapt.html>.  If you wish to report a
bug in
.BR apt-get ,
please see
.I /usr/doc/debian/bug-reporting.txt
or the
.BR bug (1)
command.
.SH AUTHOR
APT was written by the APT team <apt@packages.debian.org>.