当我在 xorg.conf.d 目录中添加 50-synaptics.conf 文件时 X Server 不会加载

Raf*_*del 7 linux fedora xorg input touchpad

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

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

Section "InputDevice"
        Identifier "touchpad"
        Driver "synaptics"
        MatchIsTouchpad "on"
        Option "HorizEdgeScroll" "on"
EndSection
Run Code Online (Sandbox Code Playgroud)

但是当我启动系统时,它挂在不同的点上,我经常看到的一个是:

Failed to start Wait for Plymouth Boot Screen to Quit.
See 'systemctl status plymouth-quit-wait.service' for details.
Run Code Online (Sandbox Code Playgroud)

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

drs*_*drs 6

将第一行更改50-synaptics.conf

Section "InputClass"
Run Code Online (Sandbox Code Playgroud)

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

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