当我在 xorg.conf.d 目录中添加 50-synaptics.conf 文件时,X Server 将无法加载

当我在 xorg.conf.d 目录中添加 50-synaptics.conf 文件时,X Server 将无法加载

我正在使用 Fedora 18。我正在尝试配置我的 synaptics 触摸板,我需要在 Awesome Window Manager 中进行点击和水平滚动。

/etc/X11/xorg.conf.d/50-synaptics.conf我创建了一个包含以下内容的文件:

Section "InputDevice"
        Identifier "touchpad"
        Driver "synaptics"
        MatchIsTouchpad "on"
        Option "HorizEdgeScroll" "on"
EndSection

但是当我启动系统时,它在不同的地方挂起,我经常看到的是:

Failed to start Wait for Plymouth Boot Screen to Quit.
See 'systemctl status plymouth-quit-wait.service' for details.

如果您想要日志文件或其他东西,请告诉我如何获取它。

答案1

将第一行更改50-synaptics.conf

Section "InputClass"

InputDevice用于定义特定设备的规则和选项,我不确定它是否仍然受支持。

InputClass是一个较新的部分,允许根据各种匹配规则匹配多个连接的设备。因为你有MatchIsTouchpad你应该使用的线路InputClass。通过这种方式,您可以告诉 xorg 将这些规则与所有触摸板相匹配。你可以看到 Fedora文档更多细节。

相关内容