Driver Xorg + fbdev (/etc/X11/xorg.conf)não funciona no Ubuntu 18.04

Driver Xorg + fbdev (/etc/X11/xorg.conf)não funciona no Ubuntu 18.04

Preciso usar o driver fbdev (framebuffer) no Xorg para obter melhor latência do sistema.

Então eu uso "Xorg:1 -configure" para obter o arquivo xorg.conf padrão. Em seguida, altere a parte "Dispositivo" e copie xorg.conf para /etc/X11. Reinicie o 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

No Ubuntu 16.04.6, funciona desta forma. Infelizmente, no Ubuntu 18.04.4, isso não acontece.

//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-máquina virtual:~$ 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

Tento degradar a versão do Xorg no Ubuntu 18.04, mas às vezes isso faz com que o Xorg trave. Depois tento na máquina vmvare.

Como posso alterar o driver Xorg para fbdev no Ubuntu 18.04?

informação relacionada