1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/apt.md

39 lines
1 KiB
Markdown
Raw Normal View History

2016-12-22 00:09:01 +01:00
# apt
> Package management utility for Debian based distributions.
2022-01-08 09:15:33 +07:00
> 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://manned.org/apt.8>.
2016-12-22 00:09:01 +01:00
- Update the list of available packages and versions (it's recommended to run this before other `apt` commands):
2016-12-22 00:09:01 +01:00
2017-04-17 18:02:14 +03:00
`sudo apt update`
2016-12-22 00:09:01 +01:00
- Search for a given package (use `apt search --name-only package` to search within package name only):
2016-12-22 00:09:01 +01:00
`apt search {{package}}`
2017-04-17 12:47:20 +03:00
- Show information for a package:
`apt show {{package}}`
- Install a package, or update it to the latest available version:
2016-12-22 00:09:01 +01:00
2017-04-17 18:02:14 +03:00
`sudo apt install {{package}}`
2016-12-22 00:09:01 +01:00
- Remove a package (using `purge` instead also removes its configuration files):
2016-12-22 00:09:01 +01:00
2017-04-17 18:02:14 +03:00
`sudo apt remove {{package}}`
2016-12-22 00:09:01 +01:00
- Upgrade all installed packages to their newest available versions:
2016-12-22 00:09:01 +01:00
2017-04-17 18:02:14 +03:00
`sudo apt upgrade`
- List all packages:
`apt list`
- List installed packages:
`apt list {{[-i|--installed]}}`