在 gpg --key-gen
发生以下错误。
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 --key-gen
发生以下错误。
Not enough random bytes available.
Please do some other work to give the OS a chance to collect more
entropy!
(Need 300 more bytes)
怎么了?
/dev/random 的熵池已耗尽。
“做某事”以产生磁盘活动、网络流量等......熵将建立。
“随机人”了解更多信息。
“cat /proc/sys/kernel/random/entropy_avail”看看你在做什么,然后再次尝试 gpg 进程。
Linux 内核维护一个随机字节“池”,可以通过 ioctl 调用或通过特殊的/dev/random和/dev/urandom文件访问这些字节。
内核处理的中断时间是输入池中的几个随机源之一。例如,键盘和鼠标输入的时间、硬盘读/写活动的时间以及为处理传入网络数据包而引发的中断时间。
当用户主动与系统交互时,所有这些来源都会更加活跃。因此,鼓励做更多的“工作”以便将更多随机字节滴入池中供gpg使用。