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

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

이 메시지를 어떻게 무시할 수 있나요?

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

다음 명령을 실행하여 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 -

답변2

키를 추가해 보세요( 56A3DEF863961D39누락된 키로 교체).

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

참고 자료 및 추가 자료:

답변3

터미널을 열고 실행

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

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

관련 정보