apt-get 업데이트 후 인텔 그래픽 ppa 오류


16

이 메시지를 어떻게 무시할 수 있습니까?

W: GPG error: https://download.01.org/gfx/ubuntu/16.04/main xenial InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 56A3DEF863961D39
W: The repository 'https://download.01.org/gfx/ubuntu/16.04/main xenial InRelease' is not signed.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.

인텔 업데이트 gfx에서 가져온 것입니다.


1
에서 아무것도 설치하지 않는 것이 좋습니다 download.01.org. 문제가 생길 것입니다.
Pilot6

@ Pilot6에 동의합니다. 해당 저장소를 제거하도록 제안하십시오. 건배, Al
heynnema

2
@ Pilot6 대안으로 제안하는 것은 무엇입니까?
kmonsoor

답변:


14

다음 명령을 실행하여 Ubuntu 16.04 및 16.10에서 해결했습니다.

wget --no-check-certificate https://download.01.org/gfx/RPM-GPG-GROUP-KEY-ilg -O - | sudo apt-key add -
wget --no-check-certificate https://download.01.org/gfx/RPM-GPG-KEY-ilg -O - | sudo apt-key add -
wget --no-check-certificate https://download.01.org/gfx/RPM-GPG-KEY-ilg-2 -O - | sudo apt-key add -
wget --no-check-certificate https://download.01.org/gfx/RPM-GPG-KEY-ilg-3 -O - | sudo apt-key add -
wget --no-check-certificate https://download.01.org/gfx/RPM-GPG-KEY-ilg-4 -O - | sudo apt-key add -

5
작동하지만 W: https://download.01.org/gfx/ubuntu/16.04/main/dists/xenial/InRelease: Signature by key 09D6EF97BFB38E916EF060E756A3DEF863961D39 uses weak digest algorithm (SHA1) apt 업데이트가 끝날 때 표시 됩니다.
ShuaibKunji

이것은 확실히 작동합니다.
saviour123

10

키를 추가하십시오 ( 56A3DEF863961D39누락 된 키로 교체 ).

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 56A3DEF863961D39
sudo apt-get update

참고 문헌 및 추가 자료 :


2
이것이 정답이어야합니다.
Alex

이 방법에 대해 확신하지 못했지만 작동합니다! 감사!
user262439

3

터미널을 열고 실행

wget --no-check-certificate https://download.01.org/gfx/RPM-GPG-KEY-ilg-4 -O - | sudo apt-key add -

이렇게하면 업데이트가 가능하고 약한 다이제스트 알고리즘 경고가 표시되지만 지금은 경고 일뿐입니다. (16.04에서

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.