Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

38
deb-get Normal file
View File

@@ -0,0 +1,38 @@
---
syntax: markdown
tags: [tldr, common]
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:
`sudo 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:
`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`