tldr/pages/linux/dpkg.md

29 lines
461 B
Markdown
Raw Normal View History

# dpkg
2014-04-29 01:19:22 +04:00
> Debian package manager.
> More information: <https://manpages.debian.org/buster/dpkg/dpkg.1.en.html>.
2014-04-29 01:19:22 +04:00
- Install a package:
2014-04-29 01:19:22 +04:00
`dpkg -i {{path/to/file.deb}}`
2014-04-29 01:19:22 +04:00
- Remove a package:
2014-04-29 01:19:22 +04:00
`dpkg -r {{package_name}}`
- List installed packages:
2014-04-29 01:19:22 +04:00
2015-09-23 13:17:08 +03:00
`dpkg -l {{pattern}}`
2014-04-29 01:19:22 +04:00
- List a package's contents:
2014-04-29 01:19:22 +04:00
`dpkg -L {{package_name}}`
- List contents of a local package file:
`dpkg -c {{path/to/file.deb}}`
2017-01-02 20:36:30 +03:00
- Find out which package owns a file:
`dpkg -S {{filename}}`