]> git.saurik.com Git - apt-legacy.git/blame - doc/apt-get.8
Drastically improved APT HTTP error messages and actually set the proxy server config...
[apt-legacy.git] / doc / apt-get.8
CommitLineData
da6ee469
JF
1.\" Title: apt\-get
2.\" Author: Jason Gunthorpe
3.\" Generator: DocBook XSL Stylesheets v1.71.0 <http://docbook.sf.net/>
4.\" Date: 29 February 2004
5.\" Manual:
6.\" Source: Linux
7.\"
8.TH "APT\-GET" "8" "29 February 2004" "Linux" ""
9.\" disable hyphenation
10.nh
11.\" disable justification (adjust text to left margin only)
12.ad l
13.SH "NAME"
14apt\-get \- APT package handling utility \-\- command\-line interface
15.SH "SYNOPSIS"
16.HP 8
17\fBapt\-get\fR [\fB\-hvs\fR] [\fB\-o=\fR\fB\fIconfig\ string\fR\fR] [\fB\-c=\fR\fB\fIfile\fR\fR] {[update] | [upgrade] | [dselect\-upgrade] | [install\ \fIpkg\fR...] | [remove\ \fIpkg\fR...] | [source\ \fIpkg\fR...] | [build\-dep\ \fIpkg\fR...] | [check] | [clean] | [autoclean]}
18.SH "DESCRIPTION"
19.PP
20\fBapt\-get\fR
21is the command\-line tool for handling packages, and may be considered the user's "back\-end" to other tools using the APT library. Several "front\-end" interfaces exist, such as dselect(8), aptitude, synaptic, gnome\-apt and wajig.
22.PP
23Unless the
24\fB\-h\fR, or
25\fB\-\-help\fR
26option is given, one of the commands below must be present.
27.PP
28update
29.RS 3n
30update
31is used to resynchronize the package index files from their sources. The indexes of available packages are fetched from the location(s) specified in
32\fI/etc/apt/sources.list\fR. For example, when using a Debian archive, this command retrieves and scans the
33\fIPackages.gz\fR
34files, so that information about new and updated packages is available. An
35update
36should always be performed before an
37upgrade
38or
39dist\-upgrade. Please be aware that the overall progress meter will be incorrect as the size of the package files cannot be known in advance.
40.RE
41.PP
42upgrade
43.RS 3n
44upgrade
45is used to install the newest versions of all packages currently installed on the system from the sources enumerated in
46\fI/etc/apt/sources.list\fR. Packages currently installed with new versions available are retrieved and upgraded; under no circumstances are currently installed packages removed, or packages not already installed retrieved and installed. New versions of currently installed packages that cannot be upgraded without changing the install status of another package will be left at their current version. An
47update
48must be performed first so that
49\fBapt\-get\fR
50knows that new versions of packages are available.
51.RE
52.PP
53dselect\-upgrade
54.RS 3n
55dselect\-upgrade
56is used in conjunction with the traditional Debian packaging front\-end,
57\fBdselect\fR(8).
58dselect\-upgrade
59follows the changes made by
60\fBdselect\fR(8)
61to the
62Status
63field of available packages, and performs the actions necessary to realize that state (for instance, the removal of old and the installation of new packages).
64.RE
65.PP
66dist\-upgrade
67.RS 3n
68dist\-upgrade
69in addition to performing the function of
70upgrade, also intelligently handles changing dependencies with new versions of packages;
71\fBapt\-get\fR
72has a "smart" conflict resolution system, and it will attempt to upgrade the most important packages at the expense of less important ones if necessary. The
73\fI/etc/apt/sources.list\fR
74file contains a list of locations from which to retrieve desired package files. See also
75\fBapt_preferences\fR(5)
76for a mechanism for overriding the general settings for individual packages.
77.RE
78.PP
79install
80.RS 3n
81install
82is followed by one or more packages desired for installation. Each package is a package name, not a fully qualified filename (for instance, in a Debian GNU/Linux system, libc6 would be the argument provided, not
83libc6_1.9.6\-2.deb) All packages required by the package(s) specified for installation will also be retrieved and installed. The
84\fI/etc/apt/sources.list\fR
85file is used to locate the desired packages. If a hyphen is appended to the package name (with no intervening space), the identified package will be removed if it is installed. Similarly a plus sign can be used to designate a package to install. These latter features may be used to override decisions made by apt\-get's conflict resolution system.
86.sp
87A specific version of a package can be selected for installation by following the package name with an equals and the version of the package to select. This will cause that version to be located and selected for install. Alternatively a specific distribution can be selected by following the package name with a slash and the version of the distribution or the Archive name (stable, testing, unstable).
88.sp
89Both of the version selection mechanisms can downgrade packages and must be used with care.
90.sp
91Finally, the
92\fBapt_preferences\fR(5)
93mechanism allows you to create an alternative installation policy for individual packages.
94.sp
95If no package matches the given expression and the expression contains one of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and it is applied to all package names in the database. Any matches are then installed (or removed). Note that matching is done by substring so 'lo.*' matches 'how\-lo' and 'lowest'. If this is undesired, anchor the regular expression with a '^' or '$' character, or create a more specific regular expression.
96.RE
97.PP
98remove
99.RS 3n
100remove
101is identical to
102install
103except that packages are removed instead of installed. If a plus sign is appended to the package name (with no intervening space), the identified package will be installed instead of removed.
104.RE
105.PP
106source
107.RS 3n
108source
109causes
110\fBapt\-get\fR
111to fetch source packages. APT will examine the available packages to decide which source package to fetch. It will then find and download into the current directory the newest available version of that source package. Source packages are tracked separately from binary packages via
112deb\-src
113type lines in the
114\fBsources.list\fR(5)
115file. This probably will mean that you will not get the same source as the package you have installed or as you could install. If the \-\-compile options is specified then the package will be compiled to a binary .deb using dpkg\-buildpackage, if \-\-download\-only is specified then the source package will not be unpacked.
116.sp
117A specific source version can be retrieved by postfixing the source name with an equals and then the version to fetch, similar to the mechanism used for the package files. This enables exact matching of the source package name and version, implicitly enabling the
118APT::Get::Only\-Source
119option.
120.sp
121Note that source packages are not tracked like binary packages, they exist only in the current directory and are similar to downloading source tar balls.
122.RE
123.PP
124build\-dep
125.RS 3n
126build\-dep
127causes apt\-get to install/remove packages in an attempt to satisfy the build dependencies for a source package.
128.RE
129.PP
130check
131.RS 3n
132check
133is a diagnostic tool; it updates the package cache and checks for broken dependencies.
134.RE
135.PP
136clean
137.RS 3n
138clean
139clears out the local repository of retrieved package files. It removes everything but the lock file from
140\fI/var/cache/apt/archives/\fR
141and
142\fI/var/cache/apt/archives/partial/\fR. When APT is used as a
143\fBdselect\fR(8)
144method,
145clean
146is run automatically. Those who do not use dselect will likely want to run
147apt\-get clean
148from time to time to free up disk space.
149.RE
150.PP
151autoclean
152.RS 3n
153Like
154clean,
155autoclean
156clears out the local repository of retrieved package files. The difference is that it only removes package files that can no longer be downloaded, and are largely useless. This allows a cache to be maintained over a long period without it growing out of control. The configuration option
157APT::Clean\-Installed
158will prevent installed packages from being erased if it is set to off.
159.RE
160.SH "OPTIONS"
161.PP
162All command line options may be set using the configuration file, the descriptions indicate the configuration option to set. For boolean options you can override the config file by using something like
163\fB\-f\-\fR,\fB\-\-no\-f\fR,
164\fB\-f=no\fR
165or several other variations.
166.PP
167\fB\-d\fR, \fB\-\-download\-only\fR
168.RS 3n
169Download only; package files are only retrieved, not unpacked or installed. Configuration Item:
170APT::Get::Download\-Only.
171.RE
172.PP
173\fB\-f\fR, \fB\-\-fix\-broken\fR
174.RS 3n
175Fix; attempt to correct a system with broken dependencies in place. This option, when used with install/remove, can omit any packages to permit APT to deduce a likely solution. Any Package that are specified must completely correct the problem. The option is sometimes necessary when running APT for the first time; APT itself does not allow broken package dependencies to exist on a system. It is possible that a system's dependency structure can be so corrupt as to require manual intervention (which usually means using
176\fBdselect\fR(8)
177or
178\fBdpkg \-\-remove\fR
179to eliminate some of the offending packages). Use of this option together with
180\fB\-m\fR
181may produce an error in some situations. Configuration Item:
182APT::Get::Fix\-Broken.
183.RE
184.PP
185\fB\-m\fR, \fB\-\-ignore\-missing\fR, \fB\-\-fix\-missing\fR
186.RS 3n
187Ignore missing packages; If packages cannot be retrieved or fail the integrity check after retrieval (corrupted package files), hold back those packages and handle the result. Use of this option together with
188\fB\-f\fR
189may produce an error in some situations. If a package is selected for installation (particularly if it is mentioned on the command line) and it could not be downloaded then it will be silently held back. Configuration Item:
190APT::Get::Fix\-Missing.
191.RE
192.PP
193\fB\-\-no\-download\fR
194.RS 3n
195Disables downloading of packages. This is best used with
196\fB\-\-ignore\-missing\fR
197to force APT to use only the .debs it has already downloaded. Configuration Item:
198APT::Get::Download.
199.RE
200.PP
201\fB\-q\fR, \fB\-\-quiet\fR
202.RS 3n
203Quiet; produces output suitable for logging, omitting progress indicators. More q's will produce more quiet up to a maximum of 2. You can also use
204\fB\-q=#\fR
205to set the quiet level, overriding the configuration file. Note that quiet level 2 implies
206\fB\-y\fR, you should never use \-qq without a no\-action modifier such as \-d, \-\-print\-uris or \-s as APT may decided to do something you did not expect. Configuration Item:
207quiet.
208.RE
209.PP
210\fB\-s\fR, \fB\-\-simulate\fR, \fB\-\-just\-print\fR, \fB\-\-dry\-run\fR, \fB\-\-recon\fR, \fB\-\-no\-act\fR
211.RS 3n
212No action; perform a simulation of events that would occur but do not actually change the system. Configuration Item:
213APT::Get::Simulate.
214.sp
215Simulate prints out a series of lines each one representing a dpkg operation, Configure (Conf), Remove (Remv), Unpack (Inst). Square brackets indicate broken packages with and empty set of square brackets meaning breaks that are of no consequence (rare).
216.RE
217.PP
218\fB\-y\fR, \fB\-\-yes\fR, \fB\-\-assume\-yes\fR
219.RS 3n
220Automatic yes to prompts; assume "yes" as answer to all prompts and run non\-interactively. If an undesirable situation, such as changing a held package, trying to install a unauthenticated package or removing an essential package occurs then
221apt\-get
222will abort. Configuration Item:
223APT::Get::Assume\-Yes.
224.RE
225.PP
226\fB\-u\fR, \fB\-\-show\-upgraded\fR
227.RS 3n
228Show upgraded packages; Print out a list of all packages that are to be upgraded. Configuration Item:
229APT::Get::Show\-Upgraded.
230.RE
231.PP
232\fB\-V\fR, \fB\-\-verbose\-versions\fR
233.RS 3n
234Show full versions for upgraded and installed packages. Configuration Item:
235APT::Get::Show\-Versions.
236.RE
237.PP
238\fB\-b\fR, \fB\-\-compile\fR, \fB\-\-build\fR
239.RS 3n
240Compile source packages after downloading them. Configuration Item:
241APT::Get::Compile.
242.RE
243.PP
244\fB\-\-ignore\-hold\fR
245.RS 3n
246Ignore package Holds; This causes
247\fBapt\-get\fR
248to ignore a hold placed on a package. This may be useful in conjunction with
249dist\-upgrade
250to override a large number of undesired holds. Configuration Item:
251APT::Ignore\-Hold.
252.RE
253.PP
254\fB\-\-no\-upgrade\fR
255.RS 3n
256Do not upgrade packages; When used in conjunction with
257install,
258no\-upgrade
259will prevent packages on the command line from being upgraded if they are already installed. Configuration Item:
260APT::Get::Upgrade.
261.RE
262.PP
263\fB\-\-force\-yes\fR
264.RS 3n
265Force yes; This is a dangerous option that will cause apt to continue without prompting if it is doing something potentially harmful. It should not be used except in very special situations. Using
266force\-yes
267can potentially destroy your system! Configuration Item:
268APT::Get::force\-yes.
269.RE
270.PP
271\fB\-\-print\-uris\fR
272.RS 3n
273Instead of fetching the files to install their URIs are printed. Each URI will have the path, the destination file name, the size and the expected md5 hash. Note that the file name to write to will not always match the file name on the remote site! This also works with the
274source
275and
276update
277commands. When used with the
278update
279command the MD5 and size are not included, and it is up to the user to decompress any compressed files. Configuration Item:
280APT::Get::Print\-URIs.
281.RE
282.PP
283\fB\-\-purge\fR
284.RS 3n
285Use purge instead of remove for anything that would be removed. An asterisk ("*") will be displayed next to packages which are scheduled to be purged. Configuration Item:
286APT::Get::Purge.
287.RE
288.PP
289\fB\-\-reinstall\fR
290.RS 3n
291Re\-Install packages that are already installed and at the newest version. Configuration Item:
292APT::Get::ReInstall.
293.RE
294.PP
295\fB\-\-list\-cleanup\fR
296.RS 3n
297This option defaults to on, use
298\-\-no\-list\-cleanup
299to turn it off. When on
300\fBapt\-get\fR
301will automatically manage the contents of
302\fI/var/lib/apt/lists\fR
303to ensure that obsolete files are erased. The only reason to turn it off is if you frequently change your source list. Configuration Item:
304APT::Get::List\-Cleanup.
305.RE
306.PP
307\fB\-t\fR, \fB\-\-target\-release\fR, \fB\-\-default\-release\fR
308.RS 3n
309This option controls the default input to the policy engine, it creates a default pin at priority 990 using the specified release string. The preferences file may further override this setting. In short, this option lets you have simple control over which distribution packages will be retrieved from. Some common examples might be
310\fB\-t '2.1*'\fR
311or
312\fB\-t unstable\fR. Configuration Item:
313APT::Default\-Release; see also the
314\fBapt_preferences\fR(5)
315manual page.
316.RE
317.PP
318\fB\-\-trivial\-only\fR
319.RS 3n
320Only perform operations that are 'trivial'. Logically this can be considered related to
321\fB\-\-assume\-yes\fR, where
322\fB\-\-assume\-yes\fR
323will answer yes to any prompt,
324\fB\-\-trivial\-only\fR
325will answer no. Configuration Item:
326APT::Get::Trivial\-Only.
327.RE
328.PP
329\fB\-\-no\-remove\fR
330.RS 3n
331If any packages are to be removed apt\-get immediately aborts without prompting. Configuration Item:
332APT::Get::Remove.
333.RE
334.PP
335\fB\-\-only\-source\fR
336.RS 3n
337Only has meaning for the
338source
339and
340build\-dep
341commands. Indicates that the given source names are not to be mapped through the binary table. This means that if this option is specified, these commands will only accept source package names as arguments, rather than accepting binary package names and looking up the corresponding source package. Configuration Item:
342APT::Get::Only\-Source.
343.RE
344.PP
345\fB\-\-diff\-only\fR, \fB\-\-tar\-only\fR
346.RS 3n
347Download only the diff or tar file of a source archive. Configuration Item:
348APT::Get::Diff\-Only
349and
350APT::Get::Tar\-Only.
351.RE
352.PP
353\fB\-\-arch\-only\fR
354.RS 3n
355Only process architecture\-dependent build\-dependencies. Configuration Item:
356APT::Get::Arch\-Only.
357.RE
358.PP
359\fB\-\-allow\-unauthenticated\fR
360.RS 3n
361Ignore if packages can't be authenticated and don't prompt about it. This is usefull for tools like pbuilder. Configuration Item:
362APT::Get::AllowUnauthenticated.
363.RE
364.PP
365\fB\-h\fR, \fB\-\-help\fR
366.RS 3n
367Show a short usage summary.
368.RE
369.PP
370\fB\-v\fR, \fB\-\-version\fR
371.RS 3n
372Show the program version.
373.RE
374.PP
375\fB\-c\fR, \fB\-\-config\-file\fR
376.RS 3n
377Configuration File; Specify a configuration file to use. The program will read the default configuration file and then this configuration file. See
378\fBapt.conf\fR(5)
379for syntax information.
380.RE
381.PP
382\fB\-o\fR, \fB\-\-option\fR
383.RS 3n
384Set a Configuration Option; This will set an arbitary configuration option. The syntax is
385\fB\-o Foo::Bar=bar\fR.
386.RE
387.SH "FILES"
388.PP
389\fI/etc/apt/sources.list\fR
390.RS 3n
391Locations to fetch packages from. Configuration Item:
392Dir::Etc::SourceList.
393.RE
394.PP
395\fI/etc/apt/apt.conf\fR
396.RS 3n
397APT configuration file. Configuration Item:
398Dir::Etc::Main.
399.RE
400.PP
401\fI/etc/apt/apt.conf.d/\fR
402.RS 3n
403APT configuration file fragments Configuration Item:
404Dir::Etc::Parts.
405.RE
406.PP
407\fI/etc/apt/preferences\fR
408.RS 3n
409Version preferences file. This is where you would specify "pinning", i.e. a preference to get certain packages from a separate source or from a different version of a distribution. Configuration Item:
410Dir::Etc::Preferences.
411.RE
412.PP
413\fI/var/cache/apt/archives/\fR
414.RS 3n
415Storage area for retrieved package files. Configuration Item:
416Dir::Cache::Archives.
417.RE
418.PP
419\fI/var/cache/apt/archives/partial/\fR
420.RS 3n
421Storage area for package files in transit. Configuration Item:
422Dir::Cache::Archives
423(implicit partial).
424.RE
425.PP
426\fI/var/lib/apt/lists/\fR
427.RS 3n
428Storage area for state information for each package resource specified in
429\fBsources.list\fR(5)
430Configuration Item:
431Dir::State::Lists.
432.RE
433.PP
434\fI/var/lib/apt/lists/partial/\fR
435.RS 3n
436Storage area for state information in transit. Configuration Item:
437Dir::State::Lists
438(implicit partial).
439.RE
440.SH "SEE ALSO"
441.PP
442\fBapt\-cache\fR(8),
443\fBapt\-cdrom\fR(8),
444\fBdpkg\fR(8),
445\fBdselect\fR(8),
446\fBsources.list\fR(5),
447\fBapt.conf\fR(5),
448\fBapt\-config\fR(8),
449\fBapt\-secure\fR(8), The APT User's guide in /usr/share/doc/apt\-doc/,
450\fBapt_preferences\fR(5), the APT Howto.
451.SH "DIAGNOSTICS"
452.PP
453\fBapt\-get\fR
454returns zero on normal operation, decimal 100 on error.
455.SH "BUGS"
456.PP
457[1]\&\fIAPT bug page\fR. If you wish to report a bug in APT, please see
458\fI/usr/share/doc/debian/bug\-reporting.txt\fR
459or the
460\fBreportbug\fR(1)
461command.
462.SH "AUTHORS"
463.PP
464\fBJason Gunthorpe\fR
465.sp -1n
466.IP "" 3n
467Author.
468.PP
469\fBAPT team\fR
470.sp -1n
471.IP "" 3n
472Author.
473.SH "REFERENCES"
474.TP 3
4751.\ APT bug page
476\%http://bugs.debian.org/src:apt