yum 在 centos7 中更新 Firefox 抛出 `gpgme.GpgmeError: (7, 32870, u'不适合设备的 ioctl')`?

yum 在 centos7 中更新 Firefox 抛出 `gpgme.GpgmeError: (7, 32870, u'不适合设备的 ioctl')`?

在centos7中进行更新并出现以下错误

gpgme.GpgmeError: (7, 32870, u'Inappropriate ioctl for device')

答案1

有同样的问题。您可以继续阅读这里了解这个问题。对此有三种解决方案,

  1. yum update firefox | tee
  2. yum update firefox --nogpgcheck
  3. (如果在 chroot 中运行)mount /dev/pts; yum update firefox

请注意,“如果您使用 --nogpgcheck,密钥将不会安装到 RPM 数据库中。您最终会安装软件包。但密钥不会添加到数据库中。”因此不建议使用第二种方法。

相关内容