deb-get
The command line tool "deb-get" is a package management tool designed specifically for handling Debian-based systems. It allows users to easily install, remove, and manage Debian packages using the command line interface.
Some key features of deb-get include:
-
Package Installations: deb-get allows users to install Debian packages from various sources, such as local files, online repositories, or even directly from a URL. It automatically resolves and fetches any necessary dependencies for the package being installed.
-
Package Removal: Users can also use deb-get to remove installed packages from their system. It ensures that any dependencies that are no longer required are also removed, effectively cleaning up the system.
-
Repository Management: deb-get provides functionality to manage the software repositories on the system. Users can add new repositories, update existing ones, or remove repositories as needed. This allows for a centralized and efficient way of managing software sources.
-
Package Information: It allows users to retrieve detailed information about installed packages or packages available in the repositories. This includes package versions, descriptions, dependencies, and other relevant metadata.
-
System Updates: deb-get can also be used to update the entire system by upgrading installed packages to their latest versions. This ensures that the system stays up-to-date with the latest security patches and bug fixes.
Overall, deb-get is a versatile command line tool for managing Debian packages and repositories, making it an essential tool for system administrators and users working with Debian-based operating systems such as Debian itself, Ubuntu, or Linux Mint.
List of commands for deb-get:
-
deb-get:tldr:1b231 deb-get: Show information about a package.$ sudo deb-get show ${package}try on your machineexplain this command
-
deb-get:tldr:244c3 deb-get: Install a package, or update it to the latest available version.$ sudo deb-get install ${package}try on your machineexplain this command
-
deb-get:tldr:40c09 deb-get: List all available packages.$ deb-get listtry on your machineexplain this command
-
deb-get:tldr:4ffb6 deb-get: Remove a package (using `purge` instead also removes its configuration files).$ sudo deb-get remove ${package}try on your machineexplain this command
-
deb-get:tldr:68f9f deb-get: Search for a given package.$ sudo deb-get search ${package}try on your machineexplain this command
-
deb-get:tldr:b22d7 deb-get: Update the list of available packages and versions.$ sudo deb-get updatetry on your machineexplain this command
-
deb-get:tldr:ea27e deb-get: Upgrade all installed packages to their newest available versions.$ sudo deb-get upgradetry on your machineexplain this command