yum centos7의 Firefox 업데이트에서 `gpgme.GpgmeError: (7, 32870, u'insuitable ioctl for device')`가 발생합니까?

yum centos7의 Firefox 업데이트에서 `gpgme.GpgmeError: (7, 32870, u'insuitable ioctl for device')`가 발생합니까?

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 데이터베이스에 설치되지 않습니다. 결국 패키지가 설치되지만 키는 데이터베이스에 추가되지 않으므로 두 번째 방법은 권장되지 않습니다."

관련 정보