mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-06 15:56:51 +00:00
Update cheatsheets
This commit is contained in:
38
tldr/linux/deb-get
Normal file
38
tldr/linux/deb-get
Normal file
@@ -0,0 +1,38 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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`
|
||||
|
||||
- Search for a given package:
|
||||
|
||||
`deb-get search {{package}}`
|
||||
|
||||
- Show information about a package:
|
||||
|
||||
`deb-get show {{package}}`
|
||||
|
||||
- Install a package, or update it to the latest available version:
|
||||
|
||||
`deb-get install {{package}}`
|
||||
|
||||
- Remove a package (using `purge` instead also removes its configuration files):
|
||||
|
||||
`deb-get remove {{package}}`
|
||||
|
||||
- Upgrade all installed packages to their newest available versions:
|
||||
|
||||
`deb-get upgrade`
|
||||
|
||||
- List all available packages:
|
||||
|
||||
`deb-get list`
|
||||
Reference in New Issue
Block a user