El controlador Xorg + fbdev (/etc/X11/xorg.conf) no funciona en Ubuntu 18.04

El controlador Xorg + fbdev (/etc/X11/xorg.conf) no funciona en Ubuntu 18.04

Necesito usar el controlador fbdev (framebuffer) en Xorg para mejorar la latencia del sistema.

Entonces uso "Xorg :1 -configure" para obtener el archivo xorg.conf predeterminado. Luego cambie la parte "Dispositivo" y copie xorg.conf a /etc/X11. Reinicie 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

En Ubuntu 16.04.6, funciona de esta manera. Lamentablemente, en Ubuntu 18.04.4, no es así.

//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

Intento degradar la versión de Xorg en Ubuntu 18.04, pero a veces hace que Xorg se cuelgue. Luego lo intento en una máquina vmvare.

¿Cómo puedo cambiar el controlador Xorg a fbdev en Ubuntu 18.04?

información relacionada