桌面使用集成 GPU,游戏使用专用 GPU

桌面使用集成 GPU,游戏使用专用 GPU

我几个月前才开始使用 Ubuntu 22.04,对此我还很陌生。

我想检查是否可以使用英特尔集成显卡用于台式机,并使用我的专用 R9 380 GPU 来玩游戏?原因是我的 DGPU 只有 2 GB VRAM,并且对于通常在 Windows 上运行的游戏,总是会出现严重的帧丢失(<10 fps)。

我用谷歌搜索,并通过以下方法找到了解决方案邮政/etc/X11/xorg.conf。我通过如下编辑文件进行了修复:

Section "ServerLayout"
    Identifier     "layout"
    Screen      0  "intel" 0 0
    Screen      1  "amdgpu" 3000 0

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

Section "Device"
    Identifier  "amdgpu"
    Driver      "amdgpu"
    BusID       "PCI:1:0:0"
EndSection

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

Section "Screen"
    Identifier "amdgpu"
    Device     "amdgpu"
    Option     "AllowEmptyInitialConfiguration" "true"
EndSection

我现在能够以与 Windows 相同或更好的性能运行游戏,但我认为这种解决方法会导致一些副作用。

当前的问题是使用 OBS 捕获的窗口扭曲,并且 Ubuntu 不再能够通过 Xorg 登录。

Xorg 登录屏幕:

Xorg 登录屏幕

此外,的输出inxi -G显示Display: wayland server: X.Org。这是正确的吗?

相关内容