1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/dpkg.md
cyqsimon 2d4f0ad33d
linux package managers: add link to ArchWiki Rosetta (#9507)
Affected pages: apt, dnf, dpkg, emerge, pacman, rpm, yum, zypper
2022-12-05 10:57:55 +10:00

638 B

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 a package:

dpkg -i {{path/to/file.deb}}

  • Remove a package:

dpkg -r {{package_name}}

  • List installed packages:

dpkg -l {{pattern}}

  • List a package's contents:

dpkg -L {{package_name}}

  • List contents of a local package file:

dpkg -c {{path/to/file.deb}}

  • Find out which package owns a file:

dpkg -S {{filename}}