在 x11 中启用软件光标

在 x11 中启用软件光标

我正在使用 XVFB 在我的无头虚拟机上创建虚拟屏幕缓冲区。我注意到 XVFB 默认不渲染鼠标,因此我尝试启用软件渲染鼠标,让鼠标显示在屏幕缓冲区中。我无法启用它。

这是我的 Xorg.0.log:https://pastebin.com/xjKebjs7

我还将以下文件放在了这些位置:

/etc/X11/xorg.conf.d/20-video.conf

Section "Device"
        Identifier      "My Graphics Card3"
        Driver          "fbdev"
        Option          "SWcursor"      "on"
EndSection

/usr/share/X11/xorg.conf.d/20-video.conf

Section "Device"
        Identifier      "My Graphics Card2"
        Driver          "fbdev"
        Option          "SWcursor"      "on"
EndSection

任何帮助将不胜感激!

相关内容