1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 06:22:07 +02:00

apt: add page (#1205)

This commit is contained in:
Fürbringer 2016-12-22 00:09:01 +01:00 committed by Waldir Pimenta
parent a6983d4063
commit c07f9624f9

31
pages/linux/apt.md Normal file
View file

@ -0,0 +1,31 @@
# 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`
- Remove no longer needed packages:
`apt autoremove`
- Upgrade installed packages and remove no longer needed packages:
`apt full-upgrade`