Chinese pages: correct Chinese punctuation (#5240)

This commit is contained in:
bl-ue
2021-08-02 04:41:09 -04:00
committed by GitHub
parent eaef3b4d21
commit 289e30dfb3
373 changed files with 1817 additions and 1810 deletions

View File

@@ -1,24 +1,24 @@
# apt-key
> Debian 和 Ubuntu 上的 APT 软件包管理器的密钥管理工具
> Debian 和 Ubuntu 上的 APT 软件包管理器的密钥管理工具
> 更多信息: <https://manpages.debian.org/latest/apt/apt-key.8.html>.
- 列出可信密钥:
- 列出可信密钥
`apt-key list`
- 向可信密钥库中添加一个密钥:
- 向可信密钥库中添加一个密钥
`apt-key add {{密钥文件.asc}}`
- 从可信密钥库中移除一个密钥:
- 从可信密钥库中移除一个密钥
`apt-key del {{密钥 id}}`
- 向可信密钥库中添加一个远程密钥:
- 向可信密钥库中添加一个远程密钥
`wget -qO - {{https://host.tld/filename.key}} | apt-key add -`
- 指定密钥 ID, 从密钥服务器中添加一个密钥:
- 指定密钥 ID, 从密钥服务器中添加一个密钥
`apt-key adv --keyserver {{pgp.mit.edu}} --recv {{密钥 id}}`