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

* 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
29 lines
624 B
Markdown
29 lines
624 B
Markdown
# dpkg
|
|
|
|
> Gestore di pacchetti Debian.
|
|
> Alcuni comandi aggiuntivi, come `dpkg deb`, hanno la propria documentazione.
|
|
> Maggiori informazioni: <https://manpages.debian.org/latest/dpkg/dpkg.html>.
|
|
|
|
- Installa un pacchetto:
|
|
|
|
`dpkg -i {{percorso/al/file.deb}}`
|
|
|
|
- Rimuove un pacchetto:
|
|
|
|
`dpkg -r {{nome_del_pacchetto}}`
|
|
|
|
- Elenca i pacchetti installati:
|
|
|
|
`dpkg -l {{espressione_per_la_ricerca}}`
|
|
|
|
- Elenca i contenuti di un pacchetto:
|
|
|
|
`dpkg -L {{nome_del_pacchetto}}`
|
|
|
|
- Elenca i contenuti di un file pacchetto locale:
|
|
|
|
`dpkg -c {{percorso/al/file.deb}}`
|
|
|
|
- Trova a quale pacchetto appartiene un file:
|
|
|
|
`dpkg -S {{filename}}`
|