Advanced Packaging Tool

Advanced Packaging Tool

apt-get requesting confirmation before an installation
Initial release 16 August 1998 (1998-08-16)
Stable release
1.0.9.8.3[1] / 16 March 2016 (2016-03-16)
Preview release
1.3~exp1[2] / 11 May 2016 (2016-05-11)
Repository anonscm.debian.org/apt/apt.git
Written in C++
Operating system Cross-platform
Platform Unix-like operating systems
Type Package management system
License GNU GPL
Website wiki.debian.org/Apt
wiki.debian.org/Teams/Apt

The Advanced Package Tool, or APT, is a free software user interface that works with core libraries to handle the installation and removal of software on the Debian, Slackware and other Linux distributions.[3] APT simplifies the process of managing software on Unix-like computer systems by automating the retrieval, configuration and installation of software packages, either from precompiled files or by compiling source code.[3]

APT was originally designed as a front-end for dpkg to work with Debian's .deb packages, but it has since been modified to also work with the RPM Package Manager system via APT-RPM.[4] The Fink project has ported APT to Mac OS X for some of its own package management tasks,[5] and APT is also available in OpenSolaris.

Usage

There has been an apt program since version 1.0; apt is a collection of tools distributed in a package named apt. A significant part of apt is defined in a C++ library of functions; apt also includes command-line programs for dealing with packages, which use the library. Three such programs are apt, apt-get and apt-cache. They are commonly used in examples of apt because they are simple and ubiquitous. The apt package is of "important" priority in all current Debian releases, and is therefore installed in a default Debian installation. Apt can be considered a front-end to dpkg, friendlier than the older dselect front-end. While dpkg performs actions on individual packages, apt tools manage relations (especially dependencies) between them, as well as sourcing and management of higher-level versioning decisions (release tracking and version pinning).

APT is often hailed as one of Debian's best features,[6][7][8][9] which Debian developers attribute to the strict quality controls in Debian's policy.[10][11]

A major feature in APT is the way it calls dpkg — it does topological sorting of the list of packages to be installed or removed and calls dpkg in the best possible sequence. In some cases, it utilizes the --force options in dpkg. However, it only does this when it is unable to calculate how to avoid the reason dpkg requires the action to be forced.

Installing software

The user indicates one or more packages to be installed. Each package name is phrased as just the name portion of the package, not a fully qualified filename (for instance, in a Debian system, libc6 would be the argument provided, not libc6_1.9.6-2.deb). Notably, apt automatically gets and installs packages upon which the indicated package depends (if necessary). This was an original distinguishing characteristic of apt-based package management systems, as it avoided installation failure due to missing dependencies, a type of dependency hell.

Another such distinction is remote repository retrieval of packages. apt uses location configuration file (/etc/apt/sources.list) to locate the desired packages, which might be available on the network or a removable storage medium, for example, and retrieve them, and also obtain information about available (but not installed) packages.

apt provides other command options to override decisions made by apt-get's conflict resolution system. One option is to force a particular version of a package. This can downgrade a package and render dependent software inoperable, so the user must be careful.

Finally, the apt_preferences mechanism allows the user to create an alternative installation policy for individual packages.

The user can specify packages by POSIX regular expression.

apt-get

apt-get is the command line package management tool supplied with the Debian package apt. APT searches its cached list of packages and lists the dependencies that must be installed or updated.

Triggers are the treatment of deferred actions.

APT retrieves, configures and installs the dependencies automatically.

Update, upgrade and dist-upgrade

Other commands used in apt-get:

apt-file

apt-file is a command to find which package includes a specific file, or to list all files included in a package. It is packaged separately from the main APT utilities.

Example to find a package:

$ apt-file update         # Fetch the files installed by the packages in local cache

$ apt-file find vmlinuz   # Find all packages providing a filename vmlinuz
linux-image-4.8.0-17-generic: /boot/vmlinuz-4.8.0-17-generic
linux-image-4.8.0-17-lowlatency: /boot/vmlinuz-4.8.0-17-lowlatency
linux-image-4.8.0-19-generic: /boot/vmlinuz-4.8.0-19-generic
linux-image-4.8.0-19-lowlatency: /boot/vmlinuz-4.8.0-19-lowlatency
linux-signed-image-4.8.0-17-generic: /usr/lib/linux/vmlinuz-4.8.0-17-generic.efi.signature
linux-signed-image-4.8.0-17-lowlatency: /usr/lib/linux/vmlinuz-4.8.0-17-lowlatency.efi.signature
linux-signed-image-4.8.0-19-generic: /usr/lib/linux/vmlinuz-4.8.0-19-generic.efi.signature
linux-signed-image-4.8.0-19-lowlatency: /usr/lib/linux/vmlinuz-4.8.0-19-lowlatency.efi.signature
ltsp-client-core: /usr/share/ltsp/cleanup.d/50-vmlinuz
needrestart: /usr/lib/needrestart/vmlinuz-get-version

$ apt-file find /boot/vmlinuz-4.8.0-17-generic  # Find also from a full path
linux-image-4.8.0-17-generic: /boot/vmlinuz-4.8.0-17-generic

$ dpkg -S vmlinuz                               # dpkg is an alternative listing less packages
linux-image-4.8.0-16-generic: /boot/vmlinuz-4.8.0-16-generic
linux-image-4.8.0-17-generic: /boot/vmlinuz-4.8.0-17-generic
linux-image-4.8.0-11-generic: /boot/vmlinuz-4.8.0-11-generic
linux-image-4.4.0-9136-generic: /boot/vmlinuz-4.4.0-9136-generic
linux-image-4.8.0-19-generic: /boot/vmlinuz-4.8.0-19-generic

Configuration and files

/etc/apt has the apt configuration folders and files.

apt-config is the APT Configuration Query program.[14] apt-config dump shows the configuration.[15]

Files

Sources

APT relies on the concept of repositories in order to find software and resolve dependencies. For apt, a repository is a directory containing packages along with an index file. This can be specified as a networked or CDROM location. The Debian project keeps a central repository of over 25,000 software packages ready for download and installation.

Any number of additional repositories can be added to APT's sources.list configuration file (/etc/apt/sources.list) and then be queried by APT. Graphical front-ends often allow modifying sources.list more simply (apt-setup). Once a package repository has been specified (like during the system installation), packages in that repository can be installed without specifying a source and will be kept up-to-date automatically.

In addition to network repositories, compact discs and other storage media (USB keydrive, hard disks...) can be used as well, using apt-cdrom[16] or adding file:/[17] to the source list file. Apt-cdrom can specify a different folder than a cd-rom, using the -d option (i.e. a hard disk or a USB keydrive). The Debian CDs available for download contain Debian repositories. This allows non-networked machines to be upgraded. Also one can use apt-zip.

Problems may appear when several sources offer the same package(s). Systems that have such possibly conflicting sources can use APT pinning to control which sources should be preferred.

APT pinning

The APT pinning feature allows administrators to force APT to choose particular versions of packages which may be available in different versions from different repositories. This allows administrators to ensure that packages are not upgraded to versions which may conflict with other packages on the system, or that have not been sufficiently tested for unwelcome changes.

In order to do this, the pins in APT's preferences file (/etc/apt/preferences) must be modified,[18] although graphical front-ends often make pinning simpler.

Front-ends

Synaptic Package Manager is one of the front-ends available for APT

Several other front-ends to APT exist, which provide more advanced installation functions and more intuitive interfaces. These include:

APT front-ends can:

APT front-ends can list the dependencies of packages being installed or upgraded, ask the administrator if packages recommended or suggested by newly installed packages should be installed too, automatically install dependencies and perform other operations on the system such as removing obsolete files and packages.

History

The original effort that led to the apt-get program was the dselect replacement project known by its codename deity.[23] This project was commissioned by Brian White, the Debian Release Manager at the time. The very first functional version of apt-get was called dpkg-get and was only intended to be a test program for the core library functions that would underpin the new UI.[24]

Much of the original development of APT was done on IRC, so records have been lost. The 'Deity Creation Team' mailing list archives include only the major highlights.

The Deity name was abandoned as the official name for the project due to concerns over the religious nature of the name. The APT name was eventually decided after considerable internal and public discussion. Ultimately the name was proposed on IRC, accepted and then finalized on the mailing lists.[25]

APT was introduced in 1998 and original test builds were circulated on IRC. The first Debian version that included it was Debian 2.1, released on 9 March 1999.[26]

In the end the original goal of the Deity project of replacing the dselect user interface (UI) was a failure. Work on the UI portion of the project was abandoned (the UI directories were removed from the CVS system) after the first public release of apt-get. The response to APT as a dselect method and a command line utility was so great and positive that all development efforts focused on maintaining and improving the tool. It was not until much later that several independent people built UIs on top of libapt-pkg.

Eventually, a new team picked up the project, began to build new features and released version 0.6 of APT which introduced the Secure APT feature, using strong cryptographic signing to authenticate the package repositories.[27]

See also

References

  1. Julian Andres Klode (13 March 2016). "Accepted apt 1.0.9.8.3 (source all amd64) into proposed-updates->stable-new, proposed-updates". Debian Package Tracker. The Debian Project. Retrieved 11 April 2016.
  2. "Accepted apt 1.3~exp1 (source) into experimental". Debian Package Tracker. The Debian Project. 11 May 2016. Retrieved 11 May 2016.
  3. 1 2 "apt-get(8) - Linux man page". linux.die.net. Archived from the original on 16 May 2008. Retrieved 2008-05-12.
  4. "APT-RPM". apt-rpm.org. Archived from the original on 21 April 2008. Retrieved 2008-05-12.
  5. "Fink - About". www.finkproject.org. Archived from the original on 11 May 2008. Retrieved 2008-05-12.
  6. Byfield, Bruce (2004-12-09). "An apt-get primer". Archived from the original on 2010-04-19.
  7. "From the archives: the best distros of 2000". Tux Radar.
  8. Dorgan, David (2004-01-19). "Migrating to Debian". linux.ie. Archived from the original on 2010-04-19.
  9. "Mobile Linux development with Familiar and a minimal Debian". Mobile Tux.
  10. "Why Debian".
  11. "Debian policy manual".
  12. "Linux Man pages".
  13. "Discussion on dist-upgrade vs. full-upgrade".
  14. "Apt-Config".
  15. "Query APT Configuration Using apt-config - Debian Admin".
  16. "apt-cdrom".
  17. i.e. Deb file:/mnt/install stable main contrib. non-free.
  18. "Apt Pinning". Debian Wiki. Archived from the original on 4 October 2006. Retrieved 2006-09-19.
  19. "AptURL". Ubuntu Wiki. Retrieved 16 April 2016.
  20. "OzOS | apt:foo".
  21. Jurick, David (2009). iPhone Hacks: Pushing the iPhone and iPod touch Beyond Their Limits. O'Reilly Media, Inc. p. 20. ISBN 9780596516642. Retrieved January 18, 2013.
  22. Adhikari, Richard (March 20, 2008). "Android, Schmandroid: Linux on the iPhone". LinuxInsider. Retrieved January 18, 2013.
  23. "Deity Mailing List, 1997-04".
  24. "Deity Mailing List, 1998-03".
  25. "Deity Mailing List, 1998-03".
  26. "A Brief History of Debian". Debian.org.
  27. "Secure APT". Debian Wiki. Retrieved 2006-09-05.

External links

This article is issued from Wikipedia - version of the 11/25/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.