使用 xorg 显示使用英特尔 GPU 的补丁

使用 xorg 显示使用英特尔 GPU 的补丁

我有一台配备 Nvidia GPU 和 Intel GPU 的笔记本电脑。我想将所有进程从 nvidia-smi 中的 Nvidia 转移到我的英特尔 GPU。

$ lspci | grep VGA
00:02.0 VGA compatible controller: Intel Corporation UHD Graphics 630 (Mobile)

因此我创建了一个 xorg.conf 文件:

Section "Device"
    Identifier      "intel"
    Driver          "intel"
    BusId           "PCI:0:2:0"
EndSection

Section "Screen"
    Identifier      "intel"
    Device          "intel"
EndSection

这确实将所有进程从我的 nvidia GPU 转移出去。但是,我曾经纯黑色的背景现在看起来像这样:

新背景

也许我需要将其他参数放入这个 xorg.conf 文件中?

感谢您的帮助

答案1

问题已解决但进行了以下更改

Driver "modesetting"

但是现在我无法在 dGPU 上运行任何东西,有没有办法设置 xorg.conf 以在必要时运行辅助 GPU?

相关内容