mirror of https://github.com/CrimsonTome/tldr.git
29 lines
461 B
Markdown
29 lines
461 B
Markdown
# dpkg
|
|
|
|
> Debian package manager.
|
|
> More information: <https://manpages.debian.org/buster/dpkg/dpkg.1.en.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}}`
|