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

- Replace "al" -> "del", "alla" -> "della", etc. in command paths - Replace all instances of "cartella" with "directory" - Update contributing-guides/translation-templates/common-arguments.md to reflect these changes Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> Co-authored-by: Marco Bonelli <marco@mebeim.net> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
29 lines
626 B
Markdown
29 lines
626 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/del/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/del/file.deb}}`
|
|
|
|
- Trova a quale pacchetto appartiene un file:
|
|
|
|
`dpkg -S {{filename}}`
|