tldr/pages/linux/aptitude.md

37 lines
1.0 KiB
Markdown
Raw Normal View History

2014-03-05 15:53:06 +00:00
# aptitude
> Debian and Ubuntu package management utility.
> More information: <https://manpages.debian.org/latest/aptitude/aptitude.8.html>.
2014-03-05 15:53:06 +00:00
- Synchronize list of packages and versions available. This should be run first, before running subsequent `aptitude` commands:
2014-03-05 15:53:06 +00:00
`aptitude update`
- Install a new package and its dependencies:
2014-03-05 15:53:06 +00:00
`aptitude install {{package}}`
- Search for a package:
2014-03-05 15:53:06 +00:00
`aptitude search {{package}}`
- Search for an installed package (`?installed` is an `aptitude` search term):
`aptitude search '?installed({{package}})'`
- Remove a package and all packages depending on it:
2014-03-05 15:53:06 +00:00
`aptitude remove {{package}}`
- Upgrade installed packages to the newest available versions:
2014-03-05 15:53:06 +00:00
`aptitude upgrade`
- Upgrade installed packages (like `aptitude upgrade`) including removing obsolete packages and installing additional packages to meet new package dependencies:
2014-03-05 15:53:06 +00:00
`aptitude full-upgrade`
- Put an installed package on hold to prevent it from being automatically upgraded:
`aptitude hold '?installed({{package}})'`