Errore grafico Intel ppa dopo l'aggiornamento apt-get


16

come posso ignorare questo messaggio?

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.

È da Intel Update GFX.


1
È meglio non installare nulla da download.01.org. Avrai solo problemi.
Pilota

Sono d'accordo con @ Pilot6. Ti suggerisco di rimuovere quel repository. Saluti, Al
heynnema,

2
@ Pilot6 cosa suggerisci in alternativa?
kmonsoor,

Risposte:


14

Sono riuscito a risolverlo per Ubuntu 16.04 e 16.10 eseguendo i seguenti comandi

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
Funziona ma viene mostrato W: https://download.01.org/gfx/ubuntu/16.04/main/dists/xenial/InRelease: Signature by key 09D6EF97BFB38E916EF060E756A3DEF863961D39 uses weak digest algorithm (SHA1) alla fine dell'aggiornamento apt.
ShuaibKunji,

Questo funziona sicuramente.
saviour123

10

Prova ad aggiungere la chiave (sostituisci 56A3DEF863961D39con la chiave mancante):

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

Riferimenti e ulteriori letture:


2
questa dovrebbe essere la risposta accettata.
Alex

Non ero sicuro di questo metodo, ma funziona! Grazie!
user262439,

3

Apri un terminale ed esegui

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

Ciò consentirà gli aggiornamenti, riceverai l'avviso dell'algoritmo digest debole ma al momento è solo un avviso. (nel 16.04

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.