Sony Vaio Fit SVF1521V1EB 无法访问辅助 GPU

Sony Vaio Fit SVF1521V1EB 无法访问辅助 GPU

作为 Ubuntu 的新用户,我尝试了包括 Mint 在内的多个发行版。除了显卡之外,一切都正常。笔记本电脑配有 GT 740M GPU,带有 Optimus。现在,我尝试了很多教程来解决“无法访问辅助 GPU”问题,包括安装 bumblebee、primus 和许多其他东西,包括 linux 标头。我还编辑了 .conf 文件,将 Driver= 更改为 Driver=nvidia-current 方法。我正在运行 13.10

什么都不起作用,有时我会看到黑屏,有时什么都没有发生。但我总是遇到相同的错误:

[错误]无法访问辅助 GPU - 错误:无法加载 GPU 驱动程序[错误]由于后备启动已被禁用,因此正在中止。

当使用linux - linux系统复制代码命令我得到:01:00.0 3D 控制器:NVIDIA Corporation GK208M [GeForce GT 740M](rev a1)

打开我的/etc/bumblebee/xorg.conf.nvidia我得到:

Section "ServerLayout"
    Identifier  "Layout0"
    Option      "AutoAddDevices" "false"
    Option      "AutoAddGPU" "false"
EndSection

Section "Device"
    Identifier  "DiscreteNvidia"
    Driver      "nvidia"
    VendorName  "NVIDIA Corporation"

#   If the X server does not automatically detect your VGA device,
#   you can manually set it here.
#   To get the BusID prop, run `lspci | egrep 'VGA|3D'` and input the data
#   as you see in the commented example.
#   This Setting may be needed in some platforms with more than one
#   nvidia card, which may confuse the proprietary driver (e.g.,
#   trying to take ownership of the wrong device). Also needed on Ubuntu 13.04.
    BusID "PCI:01:00:0"

#   Setting ProbeAllGpus to false prevents the new proprietary driver
#   instance spawned to try to control the integrated graphics card,
#   which is already being managed outside bumblebee.
#   This option doesn't hurt and it is required on platforms running
#   more than one nvidia graphics card with the proprietary driver.
#   (E.g. Macbook Pro pre-2010 with nVidia 9400M + 9600M GT).
#   If this option is not set, the new Xorg may blacken the screen and
#   render it unusable (unless you have some way to run killall Xorg).
    Option "ProbeAllGpus" "false"

    Option "NoLogo" "true"
    Option "UseEDID" "false"
    Option "UseDisplayDevice" "none"
EndSection

当我尝试使用 PlayOnLinux 安装《死亡空间 2》时,我遇到了这个问题。它一直提示我的笔记本电脑不符合要求的规格。

请记住,我已经尝试了很多教程和谷歌,但都没有用,所以如果有人能给我一个详细的解释并以我能理解的方式修复;这不再是一个烦人的问题,我真的很想知道如何正确地排除故障并修复这类问题;)

提前谢谢您!

答案1

以下是我尽力解释我们遇到的问题。nvidia Optimus 实际上是集成显卡(或混合显卡)https://help.ubuntu.com/community/HybridGraphics)因此,这是一项将 GPU 和 CPU 物理连接在一起的新技术。

此外,由于 nvidia 就是 nvidia,他们在开源方面很差劲(Linus 实际上在一次会议上对他们嗤之以鼻),而且他们用于 Linux 的驱动程序无法正常运行。他们表示目前没有支持计划(https://askubuntu.com/tags/nvidia-optimus/info)。相反,开发集成显卡驱动程序的任务落到了用户、黑客和其他人(不确定谁在开发什么)身上。然而,在不知道它是如何构建的的情况下,其他人能做的最好的事情就是尝试基于对系统本身的逆向工程来实现它。这导致了许多问题。所以总的来说,目前的状况令人沮丧。

14.04 更新似乎给我们带来了希望(http://m.webupd8.org/2013/12/more-work-to-support-nvidia-optimus.html?m=1)。此外,nvidia“承诺”将发布更多关于其系统的细节(可能是因为即将推出的 steam box?)以便开发更多更好的驱动程序,但我们仍在等待。

祝你好运,

史蒂文

相关内容