dpkg
Debian package manager. Some subcommands such as dpkg deb have their own usage documentation. For equivalent commands in other package managers, see <https://wiki.archlinux.org/title/Pacman/Rosetta>. More information: <https://manpages.debian.org/latest/dpkg/dpkg.html>.
Install
- All systems
-
curl cmd.cat/dpkg.sh
- Debian
-
apt-get install dpkg
- Ubuntu
-
apt-get install dpkg
- Alpine
-
apk add dpkg
- Kali Linux
-
apt-get install dpkg
- Fedora
-
dnf install dpkg
- Windows (WSL2)
-
sudo apt-get update
sudo apt-get install dpkg
- OS X
-
brew install dpkg
- Raspbian
-
apt-get install dpkg
- Dockerfile
- dockerfile.run/dpkg
- Docker
-
docker run cmd.cat/dpkg dpkg
powered by Commando
Debian package manager. Some subcommands such as dpkg deb have their own usage documentation. For equivalent commands in other package managers, see <https://wiki.archlinux.org/title/Pacman/Rosetta>. More information: <https://manpages.debian.org/latest/dpkg/dpkg.html>.
-
Install a package:
dpkg -i path/to/file.deb
-
Remove a package:
dpkg -r package
-
List installed packages:
dpkg -l pattern
-
List a package's contents:
dpkg -L package
-
List contents of a local package file:
dpkg -c path/to/file.deb
-
Find out which package owns a file:
dpkg -S path/to/file
© tl;dr; authors and contributors