tldr/pages/linux/apt.md

28 lines
558 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:
2017-04-17 16:02:14 +01:00
`sudo apt update`
2016-12-21 23:09:01 +00:00
- Search for packages:
`apt search {{package}}`
2017-04-17 10:47:20 +01:00
- Show information for a package:
`apt show {{package}}`
2016-12-21 23:09:01 +00:00
- Install a new package:
2017-04-17 16:02:14 +01:00
`sudo apt install {{package}}`
2016-12-21 23:09:01 +00:00
- Remove a package (using "purge" instead also removes its configuration files):
2017-04-17 16:02:14 +01:00
`sudo apt remove {{package}}`
2016-12-21 23:09:01 +00:00
- Upgrade installed packages to the newest available versions:
2017-04-17 16:02:14 +01:00
`sudo apt upgrade`