mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-14 18:48:33 +00:00
Update cheatsheets
This commit is contained in:
43
linux/apt
Normal file
43
linux/apt
Normal file
@@ -0,0 +1,43 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# apt
|
||||
|
||||
> Package management utility for Debian based distributions.
|
||||
> Recommended replacement for `apt-get` when used interactively in Ubuntu versions 16.04 and later.
|
||||
> For equivalent commands in other package managers, see <https://wiki.archlinux.org/title/Pacman/Rosetta>.
|
||||
> More information: <https://manpages.debian.org/latest/apt/apt.8.html>.
|
||||
|
||||
- Update the list of available packages and versions (it's recommended to run this before other `apt` commands):
|
||||
|
||||
`sudo apt update`
|
||||
|
||||
- Search for a given package:
|
||||
|
||||
`apt search {{package}}`
|
||||
|
||||
- Show information for a package:
|
||||
|
||||
`apt show {{package}}`
|
||||
|
||||
- Install a package, or update it to the latest available version:
|
||||
|
||||
`sudo apt install {{package}}`
|
||||
|
||||
- Remove a package (using `purge` instead also removes its configuration files):
|
||||
|
||||
`sudo apt remove {{package}}`
|
||||
|
||||
- Upgrade all installed packages to their newest available versions:
|
||||
|
||||
`sudo apt upgrade`
|
||||
|
||||
- List all packages:
|
||||
|
||||
`apt list`
|
||||
|
||||
- List installed packages:
|
||||
|
||||
`apt list --installed`
|
||||
Reference in New Issue
Block a user