tldr/pages/linux/apt.md

28 lines
567 B
Markdown
Raw Normal View History

2016-12-21 23:09:01 +00:00
# apt
> Package management utility for Debian based distributions.
- Update list of packages and versions available. This should be run before running further apt commands:
`apt update`
- Search for packages:
`apt search {{package}}`
- Install a new package:
`apt install {{package}}`
- Remove a package (using "purge" instead also removes its configuration files):
`apt remove {{package}}`
- Upgrade installed packages to the newest available versions:
`apt upgrade`
- Upgrade installed packages and remove no longer needed packages:
`apt full-upgrade`