1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 17:22:10 +02:00
tldr/pages/linux/apt-key.md
2017-01-03 09:40:24 +00:00

23 lines
485 B
Markdown

# 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 -`
- Add a key from keyserver with only key id:
`apt-key adv --keyserver {{pgp.mit.edu}} --recv {{KEYID}}`