1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.de/linux/dpkg.md
Axel Navarro 84b6cabf6e
a2query, dpkg*, check-support-status, netselect-apt, reportbug: update Debian link (#7622)
* a2query: update link to Debian manpage

* check-support-status: update link to Debian manpage

* dpkg-deb: update link to Debian manpage

* dpkg: update link to Debian manpage

* netselect-apt: update link to Debian manpage

* reportbug: update link to Debian manpage
2022-01-08 20:39:40 +07:00

29 lines
560 B
Markdown

# dpkg
> Debian Paketmanager.
> Manche Unterbefehle wie `dpkg deb` sind separat dokumentiert.
> Weitere Informationen: <https://manpages.debian.org/latest/dpkg/dpkg.html>.
- Installiere ein Paket:
`dpkg -i {{pfad/zu/datei.deb}}`
- Entferne ein Paket:
`dpkg -r {{paketname}}`
- Liste installierte Pakete auf:
`dpkg -l {{muster}}`
- Liste die Inhalte eines Pakets auf:
`dpkg -L {{paketname}}`
- Liste die Inhalte einer lokalen Paketdatei auf:
`dpkg -c {{pfad/zu/datei.deb}}`
- Finde heraus welche Pakete eine Datei besitzen:
`dpkg -S {{dateiname}}`