add chinese for pages.cn/linux/add-apt-respository.md

This commit is contained in:
hugue
2018-12-21 20:04:36 +08:00
committed by Agniva De Sarker
parent 6baf5eaa78
commit 1ce15b00a1
1250 changed files with 26030 additions and 0 deletions

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

@@ -0,0 +1,23 @@
# 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}}`