mirror of https://github.com/CrimsonTome/tldr.git
32 lines
791 B
Markdown
32 lines
791 B
Markdown
# aptitude
|
|
|
|
> Debian and Ubuntu package management utility.
|
|
|
|
- Synchronize list of packages and versions available. This should be run first, before running subsequent aptitude commands:
|
|
|
|
`aptitude update`
|
|
|
|
- Install a new package and its dependencies:
|
|
|
|
`aptitude install {{package}}`
|
|
|
|
- Search for a package:
|
|
|
|
`aptitude search {{package}}`
|
|
|
|
- Remove a package and all packages depending on it:
|
|
|
|
`aptitude remove {{package}}`
|
|
|
|
- Do an `aptitude remove {{package}}` and remove all config files:
|
|
|
|
`aptitude purge {{package}}`
|
|
|
|
- Upgrade installed packages to newest available versions:
|
|
|
|
`aptitude upgrade`
|
|
|
|
- Upgrade installed packages (like `aptitude upgrade`) including removing obsolete packages and installing additional packages to meet new package dependencies:
|
|
|
|
`aptitude full-upgrade`
|