태그 보관물: keyrings

keyrings

키링 프로그램을 통해 gpg 키를 생성 할 수 없습니다 to perform some other

시스템의 GPG 프로그램을 통해 gpg 키를 생성하려고 할 때마다 내 이름, 이메일 및 비밀번호를 요청하면 GPG 프로그램의 기본 창을 제외한 모든 것이 사라집니다.

사용시 gpg key-gen

gpg: can't open `/home/jesse/.gnupg/random_seed': Permission denied
We need to generate a lot of random bytes. It is a good idea to perform
some other action (type on the keyboard, move the mouse, utilize the
disks) during the prime generation; this gives the random number
generator a better chance to gain enough entropy.
gpg: WARNING: some OpenPGP programs can't handle a DSA key with this digest size
+++++++++++++++..++++++++++...+++++++++++++++.+++++..+++++.+++++.++++++++++.+++++++++++++++..+++++.++++++++++++++++++++.++++++++++++++++++++++++++++++.+++++.+++++.+++++...+++++>+++++...+++++++++++++++++++++++++..+++++++++++++++>.+++++>+++++................................................................................................................................................................................................................................................................................>.+++++.................................................................................................................+++++

Not enough random bytes available.  Please do some other work to give
the OS a chance to collect more entropy! (Need 300 more bytes)
gpg: no writable public keyring found: eof
Key generation failed: eof
gpg: note: random_seed file not updated



답변

나에게 .gnugpg폴더를 삭제하면 도움이되었습니다.

sudo rm -rf ~/.gnugpg


답변

루트에서 gpg를 실행 한 후 권한이 잘못되어 일반 사용자 “joey”로 파일 중 일부 / 일부를 수정할 수 없습니다.

find ~/.gnupg -type d -exec sudo chown joey:joey {} \; -exec chmod 700 {} \;
find ~/.gnupg -type f -exec sudo chown joey:joey {} \; -exec chmod 600 {} \;

기존 키를 삭제하지 않으려는 경우 도움이됩니다.


답변