GNU/Linux >> Linux の 問題 >  >> Debian

Debian –タップをアクティブにしてタッチパッドをクリックしますか?

PowerbookG415インチ1.67GHzでDebian8.6LXDEを使用していますが、タッチパッドをタップしてクリックできるようにしたいと考えています。すでにダブルスクロールですが、タップしてクリックすると、古いマウスボタンを保存するのに役立ちます。左クリックで2本の指でタップすると、ケーキのアイシングになりますが、これは可能ですか?

承認された回答:

Debian Jessie

タッチパッドのタップを永続的に有効にするには、50-synaptics.confをコピーします /etc/X11/xorg.conf.dへのファイル 次に、Option "TapButton1" "1"を追加して編集します 。

ルートとして:

mkdir /etc/X11/xorg.conf.d
cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf

/etc/X11/xorg.conf.d/50-synaptics.conf する必要があります:

Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        Option "TapButton1" "1"
        Option "TapButton2" "3"

システムを再起動します

Debian Stretch and Buster (更新)

xserver-xorg-input-synapticsを削除します パッケージ。 (重要)

# apt remove xserver-xorg-input-synaptics

xserver-xorg-input-libinputをインストールします :

# apt install xserver-xorg-input-libinput

ほとんどの場合、xserver-xorg-input-libinputがあることを確認してください xserver-xorg-input-synapticsではなく、パッケージがインストールされています パッケージ。

ルートとして:

/etc/X11/xorg.conf.d/を作成します

mkdir /etc/X11/xorg.conf.d

40-libinput.confを作成します ファイル:

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

DMを再起動します。例:

# systemctl restart lightdm

または

# systemctl restart gdm3

Debian wiki:タッチパッドのタップを有効にする


Debian
  1. Linuxは複数の連続したパスセパレーター(/ home //// username /// file)をどのように処理しますか?

  2. Debian – / var、/ homeを別のパーティションに移動しますか?

  3. Debian –/etc/init.d/hostname.shはまだDebianStretchのオプションですか?

  1. /etc/x11/xorg.conf存在しませんか?

  2. / etc / motdはどのように更新されますか?

  3. サンプル /etc/multipath.conf ファイル

  1. CentOS / RHEL :削除された /etc/passwd ファイルから回復する方法

  2. Debian ボックスの再起動後、sysctl.conf の値を無視する

  3. /etc/passwd はグループ内のユーザーを表示しますが、/etc/group は表示しません