nvidia:0000:01:00.0 探测失败,错误为 -1

nvidia:0000:01:00.0 探测失败,错误为 -1

我有一个问题。我无法为我的显卡 gt 630 安装最新的 nvidia 驱动程序,软件包为 nvidia-352。我检查了 nvidia 网站,我确定该驱动程序应该与我的显卡兼容。可能是我的主板不兼容。你能帮忙吗?谷歌根本没有帮助 :-(

错误消息来自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

Ubuntu 版本:

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

lspci卡的输出:

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

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 <?>

答案1

似乎显卡未被正确检测到。
使用其他方法安装 NVIDIA 352 驱动程序。

首先卸载(可能部分卸载)已安装的 NVIDIA 驱动程序软件。

突出显示 GRUB 启动菜单中的 Ubuntu 条目并按下E键。
添加nouveau.modeset=0到 linux 行的末尾 - 按下F10以启动。

在登录屏幕上按Ctrl+ Alt+ F1- 输入用户名和密码 - 然后执行:

sudo apt-get purge nvidia*  
sudo reboot  

现在安装支持 NVIDIA GEFORCE GT 630 的驱动程序 352.63。

突出显示 GRUB 启动菜单中的 Ubuntu 条目并按下E键。
添加nouveau.modeset=0到 linux 行的末尾 - 按下F10以启动。

在登录屏幕上按Ctrl+ Alt+ F1- 输入用户名和密码 - 然后执行:

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

注意:如果它不起作用nouveau.modeset=0- 请使用参数重试nomodeset

相关内容