1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/dpkg.md
Nissaar cdc1757e8e
apt: add purge command (#14198)
Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
2024-10-14 13:18:23 +02:00

34 lines
699 B
Markdown

# 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 {{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}}`
- Purge an installed or already removed package, including configuration:
`dpkg -P {{package}}`