snippetbashTip
deb-get — `apt-get` functionality for `.deb` packages published in third party repositories or via direct down
Viewed 0 times
commanddeb-getaptdebcliforfunctionalityget
linux
Problem
How to use the
deb-get command: 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>.Solution
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 updateSearch 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 upgradeList all available packages:
deb-get listCode Snippets
Update the list of available packages and versions
deb-get updateSearch 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}}Context
tldr-pages: linux/deb-get
Revisions (0)
No revisions yet.