mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* batch1 * batch2 * batch3 * batch4 * Update matchpathcon.md * Update pages/linux/arecord.md Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * Update pages/linux/arecord.md Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * Update pages/linux/arecord.md Co-authored-by: Wiktor Perskawiec <git@spageektti.cc> --------- Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
807 B
807 B
dpkg
Debian package manager. Some subcommands such as
deb
have their own usage documentation. For equivalent commands in other package managers, see https://wiki.archlinux.org/title/Pacman/Rosetta. More information: https://manned.org/dpkg.
- Install a package:
dpkg {{[-i|--install]}} {{path/to/file.deb}}
- Remove a package:
dpkg {{[-r|--remove]}} {{package}}
- List installed packages:
dpkg {{[-l|--list]}} {{pattern}}
- List a package's contents:
dpkg {{[-L|--listfiles]}} {{package}}
- List contents of a local package file:
dpkg {{[-c|--contents]}} {{path/to/file.deb}}
- Find out which package owns a file:
dpkg {{[-S|--search]}} {{path/to/file}}
- Purge an installed or already removed package, including configuration:
dpkg {{[-P|--purge]}} {{package}}