1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 22:42:08 +02:00
tldr/pages/linux/dpkg.md
Axel Navarro 84b6cabf6e
a2query, dpkg*, check-support-status, netselect-apt, reportbug: update Debian link (#7622)
* a2query: update link to Debian manpage

* check-support-status: update link to Debian manpage

* dpkg-deb: update link to Debian manpage

* dpkg: update link to Debian manpage

* netselect-apt: update link to Debian manpage

* reportbug: update link to Debian manpage
2022-01-08 20:39:40 +07:00

29 lines
530 B
Markdown

# dpkg
> Debian package manager.
> Some subcommands such as `dpkg deb` have their own usage documentation.
> 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}}`