Error de Intel Graphic PPA después de la actualización de apt-get

16

¿Cómo puedo ignorar este mensaje?

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.

Es de la actualización de Intel gfx.

Landsman
fuente
1
Es mejor no instalar nada de download.01.org. Tendrás solo problemas.
Pilot6
Estoy de acuerdo con @ Pilot6. Te sugiero que elimines ese repositorio. Saludos, Al
heynnema
2
@ Pilot6, ¿qué sugiere como alternativa?
kmonsoor

Respuestas:

14

Logré resolverlo para Ubuntu 16.04 y 16.10 ejecutando los siguientes comandos

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 -
user212606
fuente
55
Funciona pero se muestra W: https://download.01.org/gfx/ubuntu/16.04/main/dists/xenial/InRelease: Signature by key 09D6EF97BFB38E916EF060E756A3DEF863961D39 uses weak digest algorithm (SHA1) al final de la actualización de apt.
ShuaibKunji
Esto funciona definitivamente.
saviour123
10

Intente agregar la clave (reemplace 56A3DEF863961D39con la clave que falta):

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

Referencias y lecturas adicionales:

pa4080
fuente
2
Esta debería ser la respuesta aceptada.
Alex
No estaba seguro acerca de este método, ¡pero funciona! ¡Gracias!
user262439
3

Abre una terminal y corre

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

Esto permitirá actualizaciones, obtendrá la advertencia de algoritmo de resumen débil pero es solo una advertencia en este momento. (en 16.04

Doug
fuente