Xorg + fbdev 驱动程序(/etc/X11/xorg.conf)在 Ubuntu 18.04 中不起作用

Xorg + fbdev 驱动程序(/etc/X11/xorg.conf)在 Ubuntu 18.04 中不起作用

我需要在 Xorg 中使用 fbdev 驱动程序(framebuffer)来获得更好的系统延迟。

因此我使用“Xorg :1 -configure”获取默认的 xorg.conf 文件。然后更改“Device”部分,并将 xorg.conf 复制到 /etc/X11。重新启动 Ubuntu。

    /etc/X11/xorg.conf
    Section "Device"
         ### Available Driver options are:-
         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
         ### <percent>: "<f>%"
         ### [arg]: arg optional
         #Option     "ShadowFB"             # [<bool>]
         #Option     "Rotate"               # <str>
         #Option     "fbdev"                # <str>
         #Option     "debug"                # [<bool>]
         Identifier  "Card0"
         #Driver     "vmware"
         Driver      "fbdev"
         BusID       "PCI:0:15:0"
    EndSection

在 Ubuntu 16.04.6 中,它以这种方式工作。遗憾的是,在 Ubuntu 18.04.4 中,它不工作。

//Ubuntu 16.04.6

hust@hust-pc:~$ inxi -G

       Graphics:  Card: VMware SVGA II Adapter
       Display Server: X.Org 1.19.6 driver: fbdev
       Resolution: [email protected]
       GLX Renderer: llvmpipe (LLVM 6.0, 256 bits)
       GLX Version: 3.0 Mesa 18.0.5

//Ubuntu 18.04.4

hust@hust-virtual-machine:~$ inxi -G

       Graphics:  Card: VMware SVGA II Adapter
       Display Server: x11 (X.Org 1.20.5 ) drivers: vmware (unloaded: modesetting,fbdev,vesa)
       Resolution: [email protected]
       OpenGL: renderer: SVGA3D; build version: 3.3 Mesa 19.2.8

我尝试在 Ubuntu 18.04 中降低 Xorg 版本,但这有时会导致 Xorg 挂起。然后我在 vmvare 机器中尝试它。

如何在 Ubuntu 18.04 中将 Xorg 驱动程序更改为 fbdev?

相关内容