doc/po/pt.po: updated, thanks to Américo Monteir
[ntk/apt.git] / doc / guide.dbk
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- -*- DocBook -*- -->
3 <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
4 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
5 <!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment;
6 ]>
7
8 <book lang="en">
9
10 <title>APT User's Guide</title>
11
12 <bookinfo>
13
14 <authorgroup>
15 <author>
16 <personname>Jason Gunthorpe</personname><email>jgg@debian.org</email>
17 </author>
18 </authorgroup>
19
20 <releaseinfo>Version &apt-product-version;</releaseinfo>
21
22 <abstract>
23 <para>
24 This document provides an overview of how to use the the APT package manager.
25 </para>
26 </abstract>
27
28 <copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>
29
30 <legalnotice>
31 <title>License Notice</title>
32 <para>
33 "APT" and this document are free software; you can redistribute them and/or
34 modify them under the terms of the GNU General Public License as published by
35 the Free Software Foundation; either version 2 of the License, or (at your
36 option) any later version.
37 </para>
38 </legalnotice>
39
40 <legalnotice>
41 <para>
42 For more details, on Debian systems, see the file
43 /usr/share/common-licenses/GPL for the full license.
44 </para>
45 </legalnotice>
46
47 </bookinfo>
48
49 <chapter id="ch1"><title>General</title>
50 <para>
51 The APT package currently contains two sections, the APT
52 <command>dselect</command> method and the <command>apt-get</command> command
53 line user interface. Both provide a way to install and remove packages as well
54 as download new packages from the Internet.
55 </para>
56
57 <section id="s1.1"><title>Anatomy of the Package System</title>
58 <para>
59 The Debian packaging system has a large amount of information associated with
60 each package to help assure that it integrates cleanly and easily into the
61 system. The most prominent of its features is the dependency system.
62 </para>
63 <para>
64 The dependency system allows individual programs to make use of shared elements
65 in the system such as libraries. It simplifies placing infrequently used
66 portions of a program in separate packages to reduce the number of things the
67 average user is required to install. Also, it allows for choices in mail
68 transport agents, X servers and so on.
69 </para>
70 <para>
71 The first step to understanding the dependency system is to grasp the concept
72 of a simple dependency. The meaning of a simple dependency is that a package
73 requires another package to be installed at the same time to work properly.
74 </para>
75 <para>
76 For instance, mailcrypt is an emacs extension that aids in encrypting email
77 with GPG. Without GPGP installed mailcrypt is useless, so mailcrypt has a
78 simple dependency on GPG. Also, because it is an emacs extension it has a
79 simple dependency on emacs, without emacs it is completely useless.
80 </para>
81 <para>
82 The other important dependency to understand is a conflicting dependency. It
83 means that a package, when installed with another package, will not work and
84 may possibly be extremely harmful to the system. As an example consider a mail
85 transport agent such as sendmail, exim or qmail. It is not possible to have
86 two mail transport agents installed because both need to listen to the network
87 to receive mail. Attempting to install two will seriously damage the system so
88 all mail transport agents have a conflicting dependency with all other mail
89 transport agents.
90 </para>
91 <para>
92 As an added complication there is the possibility for a package to pretend to
93 be another package. Consider that exim and sendmail for many intents are
94 identical, they both deliver mail and understand a common interface. Hence,
95 the package system has a way for them to declare that they are both
96 mail-transport-agents. So, exim and sendmail both declare that they provide a
97 mail-transport-agent and other packages that need a mail transport agent depend
98 on mail-transport-agent. This can add a great deal of confusion when trying to
99 manually fix packages.
100 </para>
101 <para>
102 At any given time a single dependency may be met by packages that are already
103 installed or it may not be. APT attempts to help resolve dependency issues by
104 providing a number of automatic algorithms that help in selecting packages for
105 installation.
106 </para>
107 </section>
108
109 </chapter>
110
111 <chapter id="ch2"><title>apt-get</title>
112 <para>
113 <command>apt-get</command> provides a simple way to install packages from the
114 command line. Unlike <command>dpkg</command>, <command>apt-get</command> does
115 not understand .deb files, it works with the package's proper name and can only
116 install .deb archives from a <emphasis>Source</emphasis>.
117 </para>
118 <para>
119 The first <footnote><para> If you are using an http proxy server you must set
120 the http_proxy environment variable first, see sources.list(5) </para>
121 </footnote> thing that should be done before using <command>apt-get</command>
122 is to fetch the package lists from the <emphasis>Sources</emphasis> so that it
123 knows what packages are available. This is done with <literal>apt-get
124 update</literal>. For instance,
125 </para>
126 <screen>
127 # apt-get update
128 Get http://ftp.de.debian.org/debian-non-US/ stable/binary-i386/ Packages
129 Get http://llug.sep.bnl.gov/debian/ testing/contrib Packages
130 Reading Package Lists... Done
131 Building Dependency Tree... Done
132 </screen>
133 <para>
134 Once updated there are several commands that can be used:
135 </para>
136 <variablelist>
137 <varlistentry>
138 <term>upgrade</term>
139 <listitem>
140 <para>
141 Upgrade will attempt to gently upgrade the whole system. Upgrade will never
142 install a new package or remove an existing package, nor will it ever upgrade a
143 package that might cause some other package to break. This can be used daily
144 to relatively safely upgrade the system. Upgrade will list all of the packages
145 that it could not upgrade, this usually means that they depend on new packages
146 or conflict with some other package. <command>dselect</command> or
147 <literal>apt-get install</literal> can be used to force these packages to
148 install.
149 </para>
150 </listitem>
151 </varlistentry>
152 <varlistentry>
153 <term>install</term>
154 <listitem>
155 <para>
156 Install is used to install packages by name. The package is automatically
157 fetched and installed. This can be useful if you already know the name of the
158 package to install and do not want to go into a GUI to select it. Any number
159 of packages may be passed to install, they will all be fetched. Install
160 automatically attempts to resolve dependency problems with the listed packages
161 and will print a summary and ask for confirmation if anything other than its
162 arguments are changed.
163 </para>
164 </listitem>
165 </varlistentry>
166 <varlistentry>
167 <term>dist-upgrade</term>
168 <listitem>
169 <para>
170 Dist-upgrade is a complete upgrader designed to simplify upgrading between
171 releases of Debian. It uses a sophisticated algorithm to determine the best
172 set of packages to install, upgrade and remove to get as much of the system to
173 the newest release. In some situations it may be desired to use dist-upgrade
174 rather than spend the time manually resolving dependencies in
175 <command>dselect</command>. Once dist-upgrade has completed then
176 <command>dselect</command> can be used to install any packages that may have
177 been left out.
178 </para>
179 <para>
180 It is important to closely look at what dist-upgrade is going to do, its
181 decisions may sometimes be quite surprising.
182 </para>
183 </listitem>
184 </varlistentry>
185 </variablelist>
186 <para>
187 <command>apt-get</command> has several command line options that are detailed
188 in its man page,
189 <citerefentry><refentrytitle>apt-get</refentrytitle><manvolnum>8</manvolnum></citerefentry>. The
190 most useful option is <literal>-d</literal> which does not install the
191 fetched files. If the system has to download a large number of package it
192 would be undesired to start installing them in case something goes wrong. When
193 <literal>-d</literal> is used the downloaded archives can be installed by
194 simply running the command that caused them to be downloaded again without
195 <literal>-d</literal>.
196 </para>
197 </chapter>
198
199 <chapter id="ch3"><title>DSelect</title>
200 <para>
201 The APT <command>dselect</command> method provides the complete
202 APT system with the <command>dselect</command> package selection
203 GUI. <command>dselect</command> is used to select the packages to be
204 installed or removed and APT actually installs them.
205 </para>
206 <para>
207 To enable the APT method you need to select [A]ccess in
208 <command>dselect</command> and then choose the APT method. You will be
209 prompted for a set of <emphasis>Sources</emphasis> which are places to fetch
210 archives from. These can be remote Internet sites, local Debian mirrors or
211 CD-ROMs. Each source can provide a fragment of the total Debian archive, APT
212 will automatically combine them to form a complete set of packages. If you
213 have a CD-ROM then it is a good idea to specify it first and then specify a
214 mirror so that you have access to the latest bug fixes. APT will automatically
215 use packages on your CD-ROM before downloading from the Internet.
216 </para>
217 <screen>
218 Set up a list of distribution source locations
219
220 Please give the base URL of the debian distribution.
221 The access schemes I know about are: http file
222
223 For example:
224 file:/mnt/debian,
225 ftp://ftp.debian.org/debian,
226 http://ftp.de.debian.org/debian,
227
228
229 URL [http://llug.sep.bnl.gov/debian]:
230 </screen>
231 <para>
232 The <emphasis>Sources</emphasis> setup starts by asking for the base of the
233 Debian archive, defaulting to a HTTP mirror. Next it asks for the distribution
234 to get.
235 </para>
236 <screen>
237 Please give the distribution tag to get or a path to the
238 package file ending in a /. The distribution
239 tags are typically something like: stable unstable testing non-US
240
241 Distribution [stable]:
242 </screen>
243 <para>
244 The distribution refers to the Debian version in the archive,
245 <emphasis>stable</emphasis> refers to the latest released version
246 and <emphasis>unstable</emphasis> refers to the developmental
247 version. <emphasis>non-US</emphasis> is only available on some mirrors
248 and refers to packages that contain encryption technology or other
249 things that cannot be exported from the United States. Importing these
250 packages into the US is legal however.
251 </para>
252 <screen>
253 Please give the components to get
254 The components are typically something like: main contrib non-free
255
256 Components [main contrib non-free]:
257 </screen>
258 <para>
259 The components list refers to the list of sub distributions to fetch. The
260 distribution is split up based on software licenses, main being DFSG free
261 packages while contrib and non-free contain things that have various
262 restrictions placed on their use and distribution.
263 </para>
264 <para>
265 Any number of sources can be added, the setup script will continue to prompt
266 until you have specified all that you want.
267 </para>
268 <para>
269 Before starting to use <command>dselect</command> it is necessary to update
270 the available list by selecting [U]pdate from the menu. This is a superset of
271 <literal>apt-get update</literal> that makes the fetched information available
272 to <command>dselect</command>. [U]pdate must be performed even if
273 <literal>apt-get update</literal> has been run before.
274 </para>
275 <para>
276 You can then go on and make your selections using [S]elect and then perform
277 the installation using [I]nstall. When using the APT method the [C]onfig and
278 [R]emove commands have no meaning, the [I]nstall command performs both of
279 them together.
280 </para>
281 <para>
282 By default APT will automatically remove the package (.deb) files once they
283 have been successfully installed. To change this behavior place
284 <literal>Dselect::clean "prompt";</literal> in /etc/apt/apt.conf.
285 </para>
286 </chapter>
287
288 <chapter id="ch4"><title>The Interface</title>
289 <para>
290 Both that APT <command>dselect</command> method and <command>apt-get</command>
291 share the same interface. It is a simple system that generally tells you what
292 it will do and then goes and does it. <footnote><para> The
293 <command>dselect</command> method actually is a set of wrapper scripts to
294 <command>apt-get</command>. The method actually provides more functionality
295 than is present in <command>apt-get</command> alone. </para> </footnote> After
296 printing out a summary of what will happen APT then will print out some
297 informative status messages so that you can estimate how far along it is and
298 how much is left to do.
299 </para>
300
301 <section id="s4.1"><title>Startup</title>
302 <para>
303 Before all operations except update, APT performs a number of actions
304 to prepare its internal state. It also does some checks of the system's
305 state. At any time these operations can be performed by running
306 <literal>apt-get check</literal>.
307 </para>
308 <screen>
309 # apt-get check
310 Reading Package Lists... Done
311 Building Dependency Tree... Done
312 </screen>
313 <para>
314 The first thing it does is read all the package files into memory. APT uses a
315 caching scheme so this operation will be faster the second time it is run. If
316 some of the package files are not found then they will be ignored and a
317 warning will be printed when apt-get exits.
318 </para>
319 <para>
320 The final operation performs a detailed analysis of the system's
321 dependencies. It checks every dependency of every installed or unpacked
322 package and considers if it is OK. Should this find a problem then a report
323 will be printed out and <command>apt-get</command> will refuse to run.
324 </para>
325 <screen>
326 # apt-get check
327 Reading Package Lists... Done
328 Building Dependency Tree... Done
329 You might want to run apt-get -f install' to correct these.
330 Sorry, but the following packages have unmet dependencies:
331 9fonts: Depends: xlib6g but it is not installed
332 uucp: Depends: mailx but it is not installed
333 blast: Depends: xlib6g (&gt;= 3.3-5) but it is not installed
334 adduser: Depends: perl-base but it is not installed
335 aumix: Depends: libgpmg1 but it is not installed
336 debiandoc-sgml: Depends: sgml-base but it is not installed
337 bash-builtins: Depends: bash (&gt;= 2.01) but 2.0-3 is installed
338 cthugha: Depends: svgalibg1 but it is not installed
339 Depends: xlib6g (&gt;= 3.3-5) but it is not installed
340 libreadlineg2: Conflicts:libreadline2 (&lt;&lt; 2.1-2.1)
341 </screen>
342 <para>
343 In this example the system has many problems, including a serious problem with
344 libreadlineg2. For each package that has unmet dependencies a line is printed
345 out indicating the package with the problem and the dependencies that are
346 unmet. A short explanation of why the package has a dependency problem is also
347 included.
348 </para>
349 <para>
350 There are two ways a system can get into a broken state like this. The
351 first is caused by <command>dpkg</command> missing some subtle relationships
352 between packages when performing upgrades. <footnote><para> APT however
353 considers all known dependencies and attempts to prevent broken
354 packages </para> </footnote>. The second is if a package installation
355 fails during an operation. In this situation a package may have been
356 unpacked without its dependents being installed.
357 </para>
358 <para>
359 The second situation is much less serious than the first because APT places
360 certain constraints on the order that packages are installed. In both cases
361 supplying the <literal>-f</literal> option to <command>apt-get</command>
362 will cause APT to deduce a possible solution to the problem and then
363 continue on. The APT <command>dselect</command> method always supplies
364 the <literal>-f</literal> option to allow for easy continuation of failed
365 maintainer scripts.
366 </para>
367 <para>
368 However, if the <literal>-f</literal> option is used to correct a seriously
369 broken system caused by the first case then it is possible that it will either
370 fail immediately or the installation sequence will fail. In either case it is
371 necessary to manually use dpkg (possibly with forcing options) to correct the
372 situation enough to allow APT to proceed.
373 </para>
374 </section>
375
376 <section id="s4.2"><title>The Status Report</title>
377 <para>
378 Before proceeding <command>apt-get</command> will present a report on what will
379 happen. Generally the report reflects the type of operation being performed
380 but there are several common elements. In all cases the lists reflect the
381 final state of things, taking into account the <literal>-f</literal> option
382 and any other relevant activities to the command being executed.
383 </para>
384
385 <section id="s4.2.1"><title>The Extra Package list</title>
386 <screen>
387 The following extra packages will be installed:
388 libdbd-mysql-perl xlib6 zlib1 xzx libreadline2 libdbd-msql-perl
389 mailpgp xdpkg fileutils pinepgp zlib1g xlib6g perl-base
390 bin86 libgdbm1 libgdbmg1 quake-lib gmp2 bcc xbuffy
391 squake pgp-i python-base debmake ldso perl libreadlineg2
392 ssh
393 </screen>
394 <para>
395 The Extra Package list shows all of the packages that will be installed or
396 upgraded in excess of the ones mentioned on the command line. It is only
397 generated for an <literal>install</literal> command. The listed packages are
398 often the result of an Auto Install.
399 </para>
400 </section>
401
402 <section id="s4.2.2"><title>The Packages to Remove</title>
403 <screen>
404 The following packages will be REMOVED:
405 xlib6-dev xpat2 tk40-dev xkeycaps xbattle xonix
406 xdaliclock tk40 tk41 xforms0.86 ghostview xloadimage xcolorsel
407 xadmin xboard perl-debug tkined xtetris libreadline2-dev perl-suid
408 nas xpilot xfig
409 </screen>
410 <para>
411 The Packages to Remove list shows all of the packages that will be removed
412 from the system. It can be shown for any of the operations and should be given
413 a careful inspection to ensure nothing important is to be taken off. The
414 <literal>-f</literal> option is especially good at generating packages to
415 remove so extreme care should be used in that case. The list may contain
416 packages that are going to be removed because they are only partially
417 installed, possibly due to an aborted installation.
418 </para>
419 </section>
420
421 <section id="s4.2.3"><title>The New Packages list</title>
422 <screen>
423 The following NEW packages will installed:
424 zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base
425 </screen>
426 <para>
427 The New Packages list is simply a reminder of what will happen. The packages
428 listed are not presently installed in the system but will be when APT is done.
429 </para>
430 </section>
431
432 <section id="s4.2.4"><title>The Kept Back list</title>
433 <screen>
434 The following packages have been kept back
435 compface man-db tetex-base msql libpaper svgalib1
436 gs snmp arena lynx xpat2 groff xscreensaver
437 </screen>
438 <para>
439 Whenever the whole system is being upgraded there is the possibility that new
440 versions of packages cannot be installed because they require new things or
441 conflict with already installed things. In this case the package will appear
442 in the Kept Back list. The best way to convince packages listed there to
443 install is with <literal>apt-get install</literal> or by using
444 <command>dselect</command> to resolve their problems.
445 </para>
446 </section>
447
448 <section id="s4.2.5"><title>Held Packages warning</title>
449 <screen>
450 The following held packages will be changed:
451 cvs
452 </screen>
453 <para>
454 Sometimes you can ask APT to install a package that is on hold, in such a case
455 it prints out a warning that the held package is going to be changed. This
456 should only happen during dist-upgrade or install.
457 </para>
458 </section>
459
460 <section id="s4.2.6"><title>Final summary</title>
461 <para>
462 Finally, APT will print out a summary of all the changes that will occur.
463 </para>
464 <screen>
465 206 packages upgraded, 8 newly installed, 23 to remove and 51 not upgraded.
466 12 packages not fully installed or removed.
467 Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used.
468 </screen>
469 <para>
470 The first line of the summary simply is a reduced version of all of the lists
471 and includes the number of upgrades - that is packages already installed that
472 have new versions available. The second line indicates the number of poorly
473 configured packages, possibly the result of an aborted installation. The final
474 line shows the space requirements that the installation needs. The first pair
475 of numbers refer to the size of the archive files. The first number indicates
476 the number of bytes that must be fetched from remote locations and the second
477 indicates the total size of all the archives required. The next number
478 indicates the size difference between the presently installed packages and the
479 newly installed packages. It is roughly equivalent to the space required in
480 /usr after everything is done. If a large number of packages are being removed
481 then the value may indicate the amount of space that will be freed.
482 </para>
483 <para>
484 Some other reports can be generated by using the -u option to show packages to
485 upgrade, they are similar to the previous examples.
486 </para>
487 </section>
488
489 </section>
490
491 <section id="s4.3"><title>The Status Display</title>
492 <para>
493 During the download of archives and package files APT prints out a series of
494 status messages.
495 </para>
496 <screen>
497 # apt-get update
498 Get:1 http://ftp.de.debian.org/debian-non-US/ stable/non-US/ Packages
499 Get:2 http://llug.sep.bnl.gov/debian/ testing/contrib Packages
500 Hit http://llug.sep.bnl.gov/debian/ testing/main Packages
501 Get:4 http://ftp.de.debian.org/debian-non-US/ unstable/binary-i386/ Packages
502 Get:5 http://llug.sep.bnl.gov/debian/ testing/non-free Packages
503 11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s
504 </screen>
505 <para>
506 The lines starting with <emphasis>Get</emphasis> are printed out when APT
507 begins to fetch a file while the last line indicates the progress of the
508 download. The first percent value on the progress line indicates the total
509 percent done of all files. Unfortunately since the size of the Package files
510 is unknown <literal>apt-get update</literal> estimates the percent done which
511 causes some inaccuracies.
512 </para>
513 <para>
514 The next section of the status line is repeated once for each download
515 thread and indicates the operation being performed and some useful
516 information about what is happening. Sometimes this section will simply
517 read <emphasis>Forking</emphasis> which means the OS is loading the download
518 module. The first word after the [ is the fetch number as shown on the
519 history lines. The next word is the short form name of the object being
520 downloaded. For archives it will contain the name of the package that is
521 being fetched.
522 </para>
523 <para>
524 Inside of the single quote is an informative string indicating the progress of
525 the negotiation phase of the download. Typically it progresses from
526 <emphasis>Connecting</emphasis> to <emphasis>Waiting for file</emphasis> to
527 <emphasis>Downloading</emphasis> or <emphasis>Resuming</emphasis>. The final
528 value is the number of bytes downloaded from the remote site. Once the
529 download begins this is represented as <literal>102/10.2k</literal> indicating
530 that 102 bytes have been fetched and 10.2 kilobytes is expected. The total
531 size is always shown in 4 figure notation to preserve space. After the size
532 display is a percent meter for the file itself. The second last element is the
533 instantaneous average speed. This values is updated every 5 seconds and
534 reflects the rate of data transfer for that period. Finally is shown the
535 estimated transfer time. This is updated regularly and reflects the time to
536 complete everything at the shown transfer rate.
537 </para>
538 <para>
539 The status display updates every half second to provide a constant feedback on
540 the download progress while the Get lines scroll back whenever a new file is
541 started. Since the status display is constantly updated it is unsuitable for
542 logging to a file, use the <literal>-q</literal> option to remove the status
543 display.
544 </para>
545 </section>
546
547 <section id="s4.4"><title>Dpkg</title>
548 <para>
549 APT uses <command>dpkg</command> for installing the archives and will
550 switch over to the <command>dpkg</command> interface once downloading is
551 completed. <command>dpkg</command> will also ask a number of questions as
552 it processes the packages and the packages themselves may also ask several
553 questions. Before each question there is usually a description of what it
554 is asking and the questions are too varied to discuss completely here.
555 </para>
556 </section>
557
558 </chapter>
559
560 </book>