NotePublic/Software/Applications/GPG/关于_GPG_的一点说明.md

14 lines
572 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 关于 GPG 的一点说明
在 Archlinux/Manjaro 上pacman 与 makepkg 的 gpg 检查用的不是同一个 keyring。
每个用户都有一个 keyringsudo 会把 83FE14C957E82BD9 安装到了超级管理员的 keyring 里,这导致普通账户的 keyring 下仍然没有新 kye从而使得普通账户下 yaourt 或 makepkg 失败。因此在普通账户下 yaourt 或 makepkg 缺少密钥时,需使用:
```bash
gpg --recv-keys 83FE14C957E82BD9
gpg --lsign-key 83FE14C957E82BD9
gpg --finger 83FE14C957E82BD9
```
进行添加,而不要使用 sudo。