Drivers gráficos do Intel Linux

5

Eu quero instalar o Intel Linux Graphics Drivers através do programa, mas toda vez que eu tentei instalá-los este erro aparece

W:GPG error: https://download.01.org Ubuntu Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 8D8847D52F4AAA66
W:Failed to fetch http://ppa.launchpad.net/openshot.developers/ppa/ubuntu/dists/raring/main/binary-i386/Packages  404  Not Found
E:Some index files failed to download. They have been ignored, or old ones used instead.

Como faço para corrigir isso? Eu realmente quero instalar isso para que eu possa jogar no Steam.

Processador: CPU Intel® Celeron (R) M 440 @ 1.86GHz
Gráficos: Intel® 945GM x86 / MMX / SSE2
32 bits Ubuntu 13,04

    
por bAd_charge 30.08.2013 / 23:52

2 respostas

16

Execute estes comandos em um terminal ( Ctrl + Alt + T )

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 -  

( source )

Em seguida, tente novamente

sudo apt-get update
sudo apt-get --reinstall install intel-linux-graphics-installer

Em seguida, execute o instalador novamente
( source )

    
por kiri 31.08.2013 / 00:28
3

Você pode fazer o download do Ubuntu na chave que está faltando.

No seu caso: ... the public key is not available: NO_PUBKEY 8D8847D52F4AAA66 copie o hash da mensagem de erro 8D8847D52F4AAA66

$ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 8D8847D52F4AAA66
$ sudo apt-get update

Não deve mais reclamar.

    
por Mike 23.07.2015 / 14:00