mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 16:35:28 +02:00
deb-get: add page (#8172)
This commit is contained in:
parent
59a15bf3a5
commit
5384a4f3a0
1 changed files with 33 additions and 0 deletions
33
pages/common/deb-get.md
Normal file
33
pages/common/deb-get.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
# 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:
|
||||
|
||||
`sudo deb-get update`
|
||||
|
||||
- Search for a given package:
|
||||
|
||||
`sudo deb-get search {{package}}`
|
||||
|
||||
- Show information about a package:
|
||||
|
||||
`sudo deb-get show {{package}}`
|
||||
|
||||
- Install a package, or update it to the latest available version:
|
||||
|
||||
`sudo deb-get install {{package}}`
|
||||
|
||||
- Remove a package (using `purge` instead also removes its configuration files):
|
||||
|
||||
`sudo deb-get remove {{package}}`
|
||||
|
||||
- Upgrade all installed packages to their newest available versions:
|
||||
|
||||
`sudo deb-get upgrade`
|
||||
|
||||
- List all available packages:
|
||||
|
||||
`deb-get list`
|
Loading…
Add table
Reference in a new issue