nvidia: o teste de 0000: 01: 00.0 falhou com o erro -1

1

Eu tenho um problema. Não consigo instalar os drivers nvidia mais recentes para o meu cartão gt 630, pacote nvidia-352. Verifico este site da nvidia e tenho certeza que o driver deve ser compatível com o meu cartão. Provavelmente minha placa-mãe não é. Poderia ajudar por favor? google não ajudou :-( em tudo

A mensagem de erro de dmesg :

[  353.572840] NVRM: The Unknown NVIDIA GT2xx Series GPU installed in this
[  353.572840] NVRM:  system is not supported through the 352.63 NVIDIA
[  353.572840] NVRM:  driver. You can try the NVIDIA 340.xx Legacy drivers.
[  353.572840] NVRM:  Please visit http://www.nvidia.com/object/unix.html
[  353.572840] NVRM:  for download information.  The 352.63 NVIDIA driver
[  353.572840] NVRM:  will ignore this GPU.  Continuing probe...
[  353.572877] nvidia: probe of 0000:01:00.0 failed with error -1
[  353.572901] Error: Driver 'nvlink' is already registered, aborting...
[  353.573313] NVRM: The NVIDIA probe routine failed for 1 device(s).
[  353.573315] NVRM: None of the NVIDIA graphics adapters were initialized!
[  353.573317] [drm] Module unloaded
[  353.573418] NVRM: NVIDIA init module failed!
[  353.574017] systemd-udevd[2755]: Failed to apply ACL on /dev/dri/card0: No such file or directory
[  353.574026] systemd-udevd[2755]: Failed to apply ACL on /dev/dri/card0: No such file or directory

Versão do Ubuntu:

lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 14.04.3 LTS
Release:        14.04
Codename:       trusty

lspci output para o cartão:

01:00.0 VGA compatible controller [0300]: NVIDIA Corporation GF108 [GeForce GT 630] [10de:0f00] (rev a2) (prog-if 00 [VGA controller])
        Flags: fast devsel, IRQ 16
        Memory at f6000000 (32-bit, non-prefetchable) [size=16M]
        Memory at c0000000 (64-bit, prefetchable) [size=512M]
        Memory at e0000000 (64-bit, prefetchable) [size=32M]
        I/O ports at e000 [size=128]
        Expansion ROM at f7000000 [disabled] [size=512K]
        Capabilities: [60] Power Management version 3
        Capabilities: [68] MSI: Enable- Count=1/1 Maskable- 64bit+
        Capabilities: [78] Express Endpoint, MSI 00
        Capabilities: [b4] Vendor Specific Information: Len=14 <?>
        Capabilities: [100] Virtual Channel
        Capabilities: [128] Power Budgeting <?>
        Capabilities: [600] Vendor Specific Information: ID=0001 Rev=1 Len=024 <?>

uname -a :

Linux vladimir-pc 3.16.0-57-generic #77~14.04.1-Ubuntu SMP Thu Dec 17 23:20:00 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux

Informação do BIOS:

01:00.0 VGA compatible controller [0300]: NVIDIA Corporation GF108 [GeForce GT 630] [10de:0f00] (rev a2) (prog-if 00 [VGA controller])
        Flags: fast devsel, IRQ 16
        Memory at f6000000 (32-bit, non-prefetchable) [size=16M]
        Memory at c0000000 (64-bit, prefetchable) [size=512M]
        Memory at e0000000 (64-bit, prefetchable) [size=32M]
        I/O ports at e000 [size=128]
        Expansion ROM at f7000000 [disabled] [size=512K]
        Capabilities: [60] Power Management version 3
        Capabilities: [68] MSI: Enable- Count=1/1 Maskable- 64bit+
        Capabilities: [78] Express Endpoint, MSI 00
        Capabilities: [b4] Vendor Specific Information: Len=14 <?>
        Capabilities: [100] Virtual Channel
        Capabilities: [128] Power Budgeting <?>
        Capabilities: [600] Vendor Specific Information: ID=0001 Rev=1 Len=024 <?>
    
por Александр Б 19.12.2015 / 20:56

1 resposta

2

Parece que a placa gráfica não foi detectada corretamente.
Instale os drivers da NVIDIA 352 usando um método diferente.

Primeiro desinstale (possivelmente parcialmente) o software dos drivers NVIDIA instalados.

Destaque a entrada do Ubuntu no menu de inicialização do GRUB e pressione a tecla E .
Adicione nouveau.modeset=0 ao final da linha linux - pressione F10 para inicializar.

Na tela de login, pressione Ctrl + Alt + F1 - digite o nome de usuário e a senha - e execute:

sudo apt-get purge nvidia*  
sudo reboot  

Agora instale os drivers 352.63 com suporte para NVIDIA GEFORCE GT 630.

Destaque a entrada do Ubuntu no menu de inicialização do GRUB e pressione a tecla E .
Adicione nouveau.modeset=0 ao final da linha linux - pressione F10 para inicializar.

Na tela de login, pressione Ctrl + Alt + F1 - digite o nome de usuário e a senha - e execute:

sudo apt-get update
sudo apt-get install nvidia-352
sudo reboot  

Nota: Caso não funcione com nouveau.modeset=0 - tente novamente com o parâmetro nomodeset .

    
por cl-netbox 20.12.2015 / 14:03