mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 16:22:08 +02:00

* pages/*, style-guide: update pages, fix Markdown (commit 1) * Update pages * style-guide.de: update page * Apply suggestions from code review Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * pip3: remove search command * rpm: update path placeholder Co-authored-by: pixel <pixel+github@chrissx.de> * Update pages/linux/pkgfile.md Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --------- Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> Co-authored-by: pixel <pixel+github@chrissx.de>
30 lines
632 B
Markdown
30 lines
632 B
Markdown
# 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}}`
|
|
|
|
- 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}}`
|