Penguin
Annotated edit history of APT version 6, including all changes. View license author blame.
Rev Author # Line
3 AristotlePagaltzis 1 [Acronym] for __A__dvanced __P__ackage __T__ools.
1 CraigBox 2
4 AristotlePagaltzis 3 [APT] is a system that layers automatic package dependency resolution on top of an arbitrary PackageManagementTool. The original implementation uses [Debian]'s [Deb] package format as a base, but with AptForRpm an implementation that supports [RedHat]'s [RPM] format also exists.
5 JohnMcPherson 4
1 CraigBox 5
4 AristotlePagaltzis 6 The basic tool for apt is apt-get(8). Using it looks something like
1 CraigBox 7
4 AristotlePagaltzis 8 <verbatim>
9 [root@debian ~] # apt-get install foo
10 Reading Package Lists... Done
11 Building Dependency Tree... Done
12 The following extra packages will be installed:
13 bar baz
14 The following packages will be upgraded
15 bar foo baz
16 The following packages will be REMOVED:
17 quux
18 3 packages upgraded, 0 newly installed, 1 removed and 582 not upgraded.
19 Need to get 12345kB of archives.
20 After unpacking 1234kB of additional disk space will be used.
21 Do you want to continue? [Y/n]
22 </verbatim>
1 CraigBox 23
6 AristotlePagaltzis 24 [APT] has calculated that in order to install the latest version of <tt>foo</tt>, you will need to upgrade to a newer <tt>bar</tt> and <tt>baz</tt>; <tt>quux</tt> is [Deprecated] by the new version of <tt>baz</tt>, so it will remove that package. It also calculated that with the old versions of the packages gone and the new ones updated and installed, an additional 1234[KB] disk space will be taken.
1 CraigBox 25
4 AristotlePagaltzis 26 See also:
27 * [WLUG]'s [APT repository | http://www.wlug.org.nz/archive/debian/] for [Debian]
28 * AptNotes