"Nessun file o directory" quando si genera una chiave gpg


21

Sto cercando di generare una chiave gpg

$ gpg --full-gen-key

ma alla fine ricevo un errore

gpg: agent_genkey failed: No such file or directory
Key generation failed: No such file or directory

Sono su 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
.............

La directory /home/me123/.gnupg esiste


3
Esegui strace -o /tmp/foo gpg --full-gen-keye quindi rivedi l'output. Dovrebbe quindi essere chiaro quale file o directory non sta trovando.
steve

1
Se questo non risolve, si potrebbe anche iniziare gpg-agentcon strace, nel caso in cui l'errore viene da lì: pkill gpg-agent; strace -o /tmp/gpg-agent.trace gpg-agent --daemon.
Matei David,

Risposte:



14

Sembrerebbe che la directory ~ / .gnupg / private-keys-v1.d (in alcune circostanze) non sia stata creata o sia stata creata con le autorizzazioni sbagliate.

# mkdir -p ~/.gnupg/private-keys-v1.d
# chmod 700 ~/.gnupg/private-keys-v1.d

Risolto il problema per me.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.