Add apt-key for managing system trusted GPG keys.

waldyrious/alt-syntax
Peter Tripp 2016-01-07 20:56:45 -08:00
parent efa4cbd4de
commit e660e79eb5
1 changed files with 19 additions and 0 deletions

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

@ -0,0 +1,19 @@
# apt-key
> Key management utility for the APT Package Manager on Debian and Ubuntu
- List trusted keys
`apt-key list`
- Add a key to the trusted keystore
`apt-key add {{public_key_file.asc}}`
- Delete a key from the trusted keystore
`apt-key del {{key_id}}`
- Add a remote key to the trusted keystore
`wget -qO - {{https://host.tld/filename.key}} | apt-key add -`