タッチパッドがクリックに反応しません。

タッチパッドがクリックに反応しません。

Debian Stretch(xfce)がありますが、タッチパッドがクリックに応答しません。

この問題を解決するために、次のいくつかのソリューションを検索しました。

  • 作る50-synaptics.conf到着/etc/X11/Xsession.d/そして/usr/share/X11/xorg.conf.d/

50-synaptics.conf

Section “InputClass”
        Identifier  “touchpad catchall”
        Driver  “synaptics”
        MatchIsTouchpad “on”
MatchDevicePath “/dev/input/event*”
        Option  “TapButton1”  “1”
        Option  “TapButton2”  “2”
        Option  “TapButton3”  “3”

しかし、いくつかの回避策を試してみると、Light-Display-Managerを起動するたびにクラッシュが発生します。

削除する必要があります50-synaptics.confそしてラップトップを再起動してください。

それでは、タッチパッドの問題を解決できますか?

ベストアンサー1

Debian 9 「Stretch」を使用しています。ライブラリ入力ドライバー

$ mkdir -p /etc/X11/xorg.conf.d
$ echo 'Section "InputClass"
    Identifier "libinput touchpad catchall"
    MatchIsTouchpad "on"
    MatchDevicePath "/dev/input/event*"
    Driver "libinput"
    Option "Tapping" "on"
EndSection' > /etc/X11/xorg.conf.d/40-libinput.conf
$ systemctl restart lightdm

~からDebian Wiki

おすすめ記事