Ubuntu 14.04: os drivers nvidia não podem ser instalados

9

Eu tenho um laptop da Asus com um cartão da nVidia. lspci me diz:

01:00.0 VGA compatible controller: NVIDIA Corporation GF119M [GeForce 610M] (rev a1)

Eu fiz uma nova instalação do Ubuntu 14.04 LTS (edição de 64 bits).

Por padrão, o Ubuntu 14.04 usa os drivers nouveau, mas eles não funcionam muito bem (cursor piscando, display 3D lento, etc.), então eu gostaria de instalar os drivers nvidia proprietários.

Eu entro em Configurações do sistema > Software & amp; Atualizações > Drivers adicionais. O Ubuntu me propõe as seguintes opções:

Qualquerqueeutenteselecionar(diferentedeNouveau),depoisqueeuclicoem"APply Changes", ele retorna para Nouveau sem nenhum feedback adicional ...

Então eu tentei instalar os drivers manualmente com o apt:

$ sudo apt-get install nvidia-331
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 nvidia-331 : Depends: lib32gcc1 but it is not going to be installed
              Depends: libc6-i386 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Se eu tentar instalar manualmente os pacotes mencionados, recebo este erro:

$ sudo apt install lib32gcc1 libc6-i386
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 libc6-i386 : Depends: libc6 (= 2.19-0ubuntu5) but 2.19-0ubuntu6 is to be installed
E: Unable to correct problems, you have held broken packages.

O que posso fazer para corrigir isso?

Além disso, você acha que é um bug? (se assim for, vou levantá-lo no Launchpad)

Obrigado antecipadamente!

    
por Pierre 21.04.2014 / 08:30

2 respostas

7

OK, parece que o servidor de atualização usado (Taiwan) não está atualizado, levando a dependências não atendidas e outros problemas.

Para corrigir isso, fui para as configurações do sistema > Software & amp; atualizações > Software Ubuntu e selecionado "Download de: servidor principal" (anteriormente era "Download de: Server for Taiwan")

Os drivers proprietários podem agora ser instalados.

    
por Pierre 21.04.2014 / 09:43
0

Eu também experimentei a mesma mensagem de erro. No meu caso, foi porque meu cache do apt estava corrompido / desatualizado.

Assim, qualquer pessoa que enfrente o mesmo erro garante que sua definição de pacote esteja atualizada.

apt-get update && apt-get install nvidia-331
    
por Joyce Babu 22.01.2017 / 17:07