昨日、Zenbook UX303LBにKali Linux 2.0をインストールしましたが、トラックパッドをタッチクリックしても機能しません。 Ubuntuでも同じ問題が発生したため、新しい問題ではなく、マウスを回避策として使用しました。しかし、数分前に、2本の指でトラックパッドをタッチすると、Webサイトをスクロールできることがわかりました。
タッチパッドで2本の指のスクロールを検出できますが、1回のタップでは検出できないのはなぜですか?タップクリックを認識するようにタッチパッドを設定できますか?
これも私のために働いています:
synclient tapbutton1=1
ディストリビューションにsynclient
がない場合(Kaliなど)、apt-get install xserver-xorg-input-synaptics
、再起動して、もう一度お試しください。再起動後もシナプス設定を維持する方法については、 この回答 を参照してください。
だが...
Linuxユーザーとして、私たちは通常、ターミナルを介して問題を修正しようとし、テキストファイルを掘り起こし、すべての同様の複雑なことを行いますが、今回は答えがはるかに簡単です:)
Kali Linuxの/ Settings/Mouse&Touchpadには、「タップしてクリック」をオン/オフにするオプションがあります。このオプションはデフォルトでオフになっています。チェックを行うだけです。
問題は解決されました! Gillesの「xinput」設定を確認するのに役立つヒントがあるため、シングルタップを修正する方法を見つけました。最初に走った
apt-get install xinput
これにより、最初にxinputがインストールされました。次に、少し掘り下げて、IDが14のタッチパッドを見つけました。そのプロパティを
xinput list props 14
次に、「タップアクション」と呼ばれるプロパティを見つけました。ステータスが「0」であることに気付いたので、Synapticsのオンラインマニュアルをチェックしました( http://www.x.org/archive/X11R7.5/doc/man/man4/synaptics.4.html )、そしてタップアクションものを見つけました。問題を修正するには、実行する必要がありました
xinput set-prop 14 "Synaptics Tap Action" 1, 1, 1, 1, 1, 1, 1
これを起動コマンドに入れて、ログインするたびに実行されるようにしました。
Grubの起動中にいくつかの変更を行うことでそれを行うことができます。次のようにしてください:
1)実行
Sudo -H gedit /etc/default/grub
2)行のgeditでGRUB_CMDLINE_LINUX_DEFAULT = "quiet splash" //または= "quite"のみになる可能性があります
上記の行を次のように編集します
GRUB_CMDLINE_LINUX_DEFAULT = "quiet splash i8042.nopnp"
3)ターミナルでこのコマンドを保存して実行します。
Sudo update-grub
4)ターミナルで次のコマンドを実行します:
echo "blacklist i2c_hid" | Sudo tee /etc/modprobe.d/i2c-hid.conf
Sudo depmod -a
Sudo update-initramfs -u
echo "synaptics_i2c" | Sudo tee -a /etc/modules
4)[〜#〜]再起動[〜#〜]
ソリューションを提供してくれたpilot6に感謝します(copyrights @ pilot6)。
https://askubuntu.com/questions/592925/Dell-inspiron-3551-unsensitive-touchpad
彼のプロフィールへのリンク: https://askubuntu.com/users/167850/pilot6
このコマンドを試してください
synclient tapbutton1=1
終わった
タッチパッドをアクティブにするには、
_synclient tapbutton1=1
_
非アクティブ化するには、
_synclient tapbutton1=0
_
設定を使用して行うこともできます。
に行く、
アプリケーション->設定->マウスとタッチパッド->デバイス->タッチパッド
そしてchecked(activate)/unchecked(deactivate)
ボタン "_Tap touchpad to click
_"
私はkali linuxのローリングを使用しています。これは私のために働いたものです:
synclient tapbutton1=1
永続化するには、以下のコードをこのリンクからコピーします- https://fedoraproject.org/wiki/How_to_enable_touchpad_click /etc/X11/xorg.conf.d/99-synaptics-という名前の新しいファイルにoverrides.conf。
Section "InputClass"
Identifier "touchpad overrides"
# This makes this snippet apply to any device with the "synaptics" driver
# assigned
MatchDriver "synaptics"
####################################
## The lines that you need to add ##
# Enable left mouse button by tapping
Option "TapButton1" "1"
# Enable vertical scrolling
Option "VertEdgeScroll" "1"
# Enable right mouse button by tapping lower right corner
Option "RBCornerButton" "3"
####################################
EndSection
私はKali Linux 4.14.0を使用しています
cd/etc/X11
vi xorg.conf.d
**
# Example xorg.conf.d snippet that assigns the touchpad driver
# to all touchpads. See xorg.conf.d(5) for more information on
# InputClass.
# DO NOT EDIT THIS FILE, your distribution will likely overwrite
# it when updating. Copy (and rename) this file into
# /etc/X11/xorg.conf.d first.
# Additional options may be added in the form of
# Option "OptionName" "value"
#
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
# MatchDevicePath "/dev/input/event*"
EndSection
Section "InputClass"
Identifier "touchpad ignore duplicates"
MatchIsTouchpad "on"
MatchOS "Linux"
MatchDevicePath "/dev/input/mouse*"
Option "Ignore" "on"
EndSection
# This option enables the bottom right corner to be a right button on clickpads
# and the right and middle top areas to be right / middle buttons on clickpads
# with a top button area.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Default clickpad buttons"
MatchDriver "synaptics"
Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
EndSection
# This option disables software buttons on Apple touchpads.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Disable clickpad buttons on Apple touchpads"
MatchProduct "Apple|bcm5974"
MatchDriver "synaptics"
Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
EndSection
保存する。移動後:設定-デバイス-マウスとToucpadで[タップしてクリック]オプションをオンにします
次の行をxorg.confに追加します。
Option "SHMConfig" "true"
私にとってのその仕事:-)