私はgpgキーを生成しようとしています
$ gpg --full-gen-key
しかし結局はエラーが出ます
gpg: agent_genkey failed: No such file or directory
Key generation failed: No such file or directory
私はArch Linuxを使用しています。
$ gpg --version
gpg (GnuPG) 2.1.15
libgcrypt 1.7.3
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Home: /home/me123/.gnupg
.............
/home/me123/.gnupgディレクトリが存在します
/home/me123/.gnupgディレクトリを削除してから、gpgによって再作成されましたか?もしそうなら、それはおそらくエージェントを混乱させるものです。
エージェント(gpgconf --kill gpg-agent
)または、より徹底的に、マシンをリブートして、再試行してください。
ディレクトリ〜/ .gnupg/private-keys-v1.d(状況によっては)が作成されていないか、間違った権限で作成されているようです。
# mkdir -p ~/.gnupg/private-keys-v1.d
# chmod 700 ~/.gnupg/private-keys-v1.d
私のために修正しました。