1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-24 00:42:08 +02:00

Merge pull request #640 from notpeter/apt-key

Add apt-key
This commit is contained in:
Waldir Pimenta 2016-01-09 18:19:07 +00:00
commit d78ef2ffa1

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 -`