web-dev-qa-db-ja.com

Ubuntu 18.04でgpg-agentを起動できません

Ubuntu 16.04をUbuntu 18.04にアップグレードしました。

gpg-agentを実行すると

gpg-agent: relocation error: gpg-agent: symbol gcry_get_config version GCRYPT_1.6 not defined in file libgcrypt.so.20 with link time reference

何が問題ですか?

Githubアカウントのgpgキーを作成したいのですが、gpg --gen-key

gpg: can't connect to the agent: IPC connect call failed
gpg: agent_genkey failed: No agent running
Key generation failed: No agent running
1
AntGeorge

解決しました。 libgcryptを1.8に更新し(以前は1.7でした)、gpg-agentが動作するようになりました。

2
AntGeorge

これは私にも起こりました。実行:

Sudo apt-get install gpg-agent

これで、gpgキーを作成できるはずです。

0
Steve McDonald