Linux

當我在 xorg.conf.d 目錄中添加 50-synaptics.conf 文件時,X Server 不會載入

  • June 25, 2013

我正在使用 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

但是當我啟動系統時,它會在不同的點掛起,我經常看到的是:

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

如果您需要日誌文件或其他內容,請告訴我如何獲取它。

將第一行更改50-synaptics.conf

Section "InputClass"

InputDevice用於定義特定設備的規則和選項,我不確定它是否仍受支持。

InputClass是一個較新的部分,允許根據各種匹配規則匹配多個連接的設備。因為你有MatchIsTouchpad你應該使用的線路InputClass。這樣你就告訴 xorg 將這些規則與所有觸摸板匹配。您可以查看 Fedora文件了解更多詳細資訊。

引用自:https://unix.stackexchange.com/questions/80584