2016-01-08 04:56:45 +00:00
|
|
|
# apt-key
|
|
|
|
|
2016-01-13 11:04:46 +00:00
|
|
|
> Key management utility for the APT Package Manager on Debian and Ubuntu.
|
2021-04-17 14:26:03 +01:00
|
|
|
> Note: `apt-key` is now deprecated (except for the use of `apt-key del` in maintainer scripts).
|
|
|
|
> More information: <https://manpages.debian.org/latest/apt/apt-key.8.html>.
|
2016-01-08 04:56:45 +00:00
|
|
|
|
2016-01-28 11:41:00 +00:00
|
|
|
- List trusted keys:
|
2016-01-08 04:56:45 +00:00
|
|
|
|
|
|
|
`apt-key list`
|
|
|
|
|
2016-01-28 11:41:00 +00:00
|
|
|
- Add a key to the trusted keystore:
|
2016-01-08 04:56:45 +00:00
|
|
|
|
|
|
|
`apt-key add {{public_key_file.asc}}`
|
|
|
|
|
2016-01-28 11:41:00 +00:00
|
|
|
- Delete a key from the trusted keystore:
|
2016-01-08 04:56:45 +00:00
|
|
|
|
|
|
|
`apt-key del {{key_id}}`
|
|
|
|
|
2016-01-28 11:41:00 +00:00
|
|
|
- Add a remote key to the trusted keystore:
|
2016-01-08 04:56:45 +00:00
|
|
|
|
|
|
|
`wget -qO - {{https://host.tld/filename.key}} | apt-key add -`
|
2017-01-03 09:40:24 +00:00
|
|
|
|
|
|
|
- Add a key from keyserver with only key id:
|
|
|
|
|
|
|
|
`apt-key adv --keyserver {{pgp.mit.edu}} --recv {{KEYID}}`
|