1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/deb-get.md

34 lines
782 B
Markdown
Raw Normal View History

2022-07-09 17:00:00 +00:00
# deb-get
> `apt-get` functionality for `.deb` packages published in third party repositories or via direct download.
> Works with Linux distributions which use `apt-get`.
> More information: <https://github.com/wimpysworld/deb-get>.
- Update the list of available packages and versions:
`deb-get update`
2022-07-09 17:00:00 +00:00
- Search for a given package:
`deb-get search {{package}}`
2022-07-09 17:00:00 +00:00
- Show information about a package:
`deb-get show {{package}}`
2022-07-09 17:00:00 +00:00
- Install a package, or update it to the latest available version:
`deb-get install {{package}}`
2022-07-09 17:00:00 +00:00
- Remove a package (using `purge` instead also removes its configuration files):
`deb-get remove {{package}}`
2022-07-09 17:00:00 +00:00
- Upgrade all installed packages to their newest available versions:
`deb-get upgrade`
2022-07-09 17:00:00 +00:00
- List all available packages:
`deb-get list`