linux/a*, cp: add German translation (#6777)

This commit is contained in:
MeerBiene
2021-10-12 14:01:48 +02:00
committed by GitHub
parent 92558e2eb0
commit fb5e4b8305
24 changed files with 500 additions and 0 deletions

25
pages.de/linux/apt-key.md Normal file
View File

@@ -0,0 +1,25 @@
# apt-key
> Schlüssel Management Tool für den APT Paket Manager auf Debian und Ubuntu.
> Notiz: `apt-key` ist deprecated (außer für `apt-key del` in Maintainer Scripts).
> Mehr Informationen: <https://manpages.debian.org/latest/apt/apt-key.8.html>.
- Liste alle vertauten Schlüssel:
`apt-key list`
- Füge einen Schlüssel hinzu:
`apt-key add {{public_key_file.asc}}`
- Lösche einen Schlüssel:
`apt-key del {{key_id}}`
- Füge einen Remote Schlüssel hinzu:
`wget -qO - {{https://host.tld/filename.key}} | apt-key add -`
- Füge einen Schlüssel von einem Schlüsselserver hinzu nur mit der Schlüssel ID:
`apt-key adv --keyserver {{pgp.mit.edu}} --recv {{KEYID}}`