Difference between revisions of "APT"

From wikieduonline
Jump to navigation Jump to search
 
(23 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
Advanced [[Package manager|Package Tool]], or [[Wikipedia:APT (Debian)|APT]], is a free software user interface that works with core libraries to handle the installation and removal of software on Debian, Ubuntu and other Linux distributions.
 
Advanced [[Package manager|Package Tool]], or [[Wikipedia:APT (Debian)|APT]], is a free software user interface that works with core libraries to handle the installation and removal of software on Debian, Ubuntu and other Linux distributions.
Main Advanced Package Tool (APT) binaries are: <code>apt</code>, <code>[[apt-get]]</code> and <code>[[apt-cache]]</code>
+
Main Advanced Package Tool (APT) binaries are: <code>apt</code>, <code>[[apt-get]]</code>, <code>[[apt-cache]]</code> and <code>[[apt-key]]</code>
  
== Basic apt-get/apt commands ==
+
== Basic apt commands ==
 
* Installing: <code>apt install PACKAGE_NAME</code>
 
* Installing: <code>apt install PACKAGE_NAME</code>
 
* <code>[[apt show]] PACKAGE_NAME</code> or <code>aptitude show PACKAGE_NAME</code>
 
* <code>[[apt show]] PACKAGE_NAME</code> or <code>aptitude show PACKAGE_NAME</code>
* <code>apt policy PACKAGE_NAME</code> <ref>https://askubuntu.com/a/347805/897490</ref> Provides source repository for a given package.
+
* <code>[[apt policy]] PACKAGE_NAME</code> <ref>https://askubuntu.com/a/347805/897490</ref> Provides source repository for a given package.
 
* <code>[[apt-get]] update && apt-get upgrade</code>
 
* <code>[[apt-get]] update && apt-get upgrade</code>
 
* Showing pending to update packages: <code>apt-get upgrade --dry-run</code> or <code>apt-get upgrade -s</code>
 
* Showing pending to update packages: <code>apt-get upgrade --dry-run</code> or <code>apt-get upgrade -s</code>
 
** <code>/usr/lib/update-notifier/apt-check --human-readable</code>
 
** <code>/usr/lib/update-notifier/apt-check --human-readable</code>
 +
* <code>[[apt purge]]</code>
 +
* <code>[[apt install]]</code>
 +
* <code>[[apt autoremove]]</code>
 +
* <code>[[apt clean]] PACKAGE_NAME</code>
 +
* <code>[[apt-file]] list</code> (<code>apt install apt-file</code>)
 +
* [[apt list]]
  
 
== Basic [[apt-cache]] commands ==
 
== Basic [[apt-cache]] commands ==
Line 15: Line 21:
 
== Relevant configuration files and directories ==
 
== Relevant configuration files and directories ==
 
* <kbd>/etc/apt/[[sources.list]]</kbd><ref>https://wiki.debian.org/SourcesList</ref>: Configuration files with locations to fetch packages from.
 
* <kbd>/etc/apt/[[sources.list]]</kbd><ref>https://wiki.debian.org/SourcesList</ref>: Configuration files with locations to fetch packages from.
* <kbd>/etc/apt/sources.list.d/</kbd>: directory with additional source list fragments.
+
* <kbd>[[/etc/apt/sources.list.d/]]</kbd>: directory with additional source list fragments.
  
 
== Updates ==
 
== Updates ==
 
* To collect information about what installed packages can be upgraded:  
 
* To collect information about what installed packages can be upgraded:  
 
** <code>[[apt update]]</code>
 
** <code>[[apt update]]</code>
** <code>apt list --upgradable</code>
+
** <code>[[apt list --upgradable]]</code>
 +
** <code>[[apt list updated]]</code>
 
** <code>apt-get upgrade --dry-run</code> or <code>apt-get upgrade -s</code>
 
** <code>apt-get upgrade --dry-run</code> or <code>apt-get upgrade -s</code>
** <code>apt update && apt upgrade</code>
+
** <code>apt update && [[apt upgrade]]</code>
 
* To upgrade all installed packages: <code>apt upgrade</code>
 
* To upgrade all installed packages: <code>apt upgrade</code>
 
* <code>apt dist-upgrade</code> (see also <code>[[do-release-upgrade]]</code>)
 
* <code>apt dist-upgrade</code> (see also <code>[[do-release-upgrade]]</code>)
 
* [[APT Automatic updates]]
 
* [[APT Automatic updates]]
 +
* <code>[[apt full-upgrade]]</code>
  
 
=== Holding packages ===
 
=== Holding packages ===
To avoid packages from being upgrade when upgrading use <code>apt-mark</code> command
+
To avoid packages from being upgrade when upgrading use <code>[[apt-mark]]</code> command
 
* <code>[[apt-mark]] hold PACKAGE_NAME</code>
 
* <code>[[apt-mark]] hold PACKAGE_NAME</code>
 
* <code>apt-mark unhold PACKAGE_NAME</code>
 
* <code>apt-mark unhold PACKAGE_NAME</code>
Line 40: Line 48:
 
# Read [[APT Automatic updates]]
 
# Read [[APT Automatic updates]]
 
# Install <code>software-properties-common</code> package<ref> https://packages.debian.org/sid/admin/software-properties-common</ref> to be able to use <code>[[apt-add-repository]]</code> Python command available since 2004.
 
# Install <code>software-properties-common</code> package<ref> https://packages.debian.org/sid/admin/software-properties-common</ref> to be able to use <code>[[apt-add-repository]]</code> Python command available since 2004.
 +
 +
 +
== Related terms ==
 +
* <code>[[lsb_release]]</code>
 +
* [[Ansible apt module]]
 +
* <code>[[/etc/apt/apt.conf.d/90forceyes]]</code>
 +
* <code>[[rm -rf]] [[/var/lib/apt/lists/]]*</code>
 +
* <code>[[apt-get source]]</code>
  
 
== See Also ==
 
== See Also ==
 +
* {{dpkg}}
 +
* {{apt}}
 
* {{package managers}}
 
* {{package managers}}
* {{apt}}
 
  
 
{{CC license}}
 
{{CC license}}
Line 51: Line 68:
 
[[Category:Linux]]
 
[[Category:Linux]]
 
[[Category:APT]]
 
[[Category:APT]]
 +
[[Category:Package managers]]

Latest revision as of 09:56, 14 March 2024

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 Debian, Ubuntu and other Linux distributions. Main Advanced Package Tool (APT) binaries are: apt, apt-get, apt-cache and apt-key

Basic apt commands[edit]

  • Installing: apt install PACKAGE_NAME
  • apt show PACKAGE_NAME or aptitude show PACKAGE_NAME
  • apt policy PACKAGE_NAME [1] Provides source repository for a given package.
  • apt-get update && apt-get upgrade
  • Showing pending to update packages: apt-get upgrade --dry-run or apt-get upgrade -s
    • /usr/lib/update-notifier/apt-check --human-readable
  • apt purge
  • apt install
  • apt autoremove
  • apt clean PACKAGE_NAME
  • apt-file list (apt install apt-file)
  • apt list

Basic apt-cache commands[edit]

See also: apt show PACKAGE_NAMEdpkg -s PACKAGE_NAME

Relevant configuration files and directories[edit]

Updates[edit]

Holding packages[edit]

To avoid packages from being upgrade when upgrading use apt-mark command

  • apt-mark hold PACKAGE_NAME
  • apt-mark unhold PACKAGE_NAME
  • apt-mark showhold[4]

Single upgrade[edit]

  • To upgrade only a package: apt-get install --only-upgrade PACKAGE_NAME

Activities[edit]

  1. Read differences between apt upgrade and apt dist-upgrade: https://unix.stackexchange.com/a/304887
  2. Read APT Automatic updates
  3. Install software-properties-common package[5] to be able to use apt-add-repository Python command available since 2004.


Related terms[edit]

See Also[edit]

Text is available under the Creative Commons Attribution-ShareAlike License; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy.

Original Source: https://en.wikiversity.org/wiki/Linux_server_administration/apt

Advertising: