「システム設定」 => 「入力装置」 => 「タッチパッド」を見ていますが、何も飛び出ません。
Ubuntu / Unityは、ポイントアンドクリックをプレイするときにどの設定を使用するかを明確にします。
ありがとう
答え1
答え通りここ
50-synaptics.conf
タッチパッドのクリックを永久に有効にするには、ファイルをコピーして追加して/etc/X11/xorg.conf.d
編集します。Option "TapButton1" "1"
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"
システムを再起動してください
あなたの場合、以下のようにTapButton1を0に設定してください。
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "0"