web-dev-qa-db-ja.com

16.04でのタッチパッドの有効化/無効化の問題

Ubuntuは、リブート間のタッチパッドの状態を覚えておくのに役立ちます...嫌いです!

再起動する前にタッチパッドを有効にしないと、ブート後にデフォルトでタッチパッドが有効になる物理スイッチがありますが、ソフトウェアスイッチは無効状態を記憶するため、物理スイッチをオンにすると物理状態とソフトウェア状態の両方が切り替わります現在、物理的に無効になっており、ソフトウェアが有効になっています)。

したがって、基本的に、外部のプラグを差し込まない場合はマウスを使用できず、設定ダイアログのチェックボックスを手動でチェックします。

以前のバージョンのubuntuでは、ハードウェアタッチパッドスイッチをシステムに保存された状態に分離することが可能でした。そのため、システムで常にタッチパッドを有効にできますが、物理的に無効にできます。しかし、16.04には何も見つかりません。

また、私が見つけたこの問題のすべての解決策は2014年以降のものです...

助けてくれてありがとう

編集:xinput出力

⎡ Virtual core pointer                      id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ RAPOO RAPOO 2.4G Wireless Device          id=16   [slave  pointer  (2)]
⎜   ↳ ETPS/2 Elantech Touchpad                  id=13   [slave  pointer  (2)]
⎣ Virtual core keyboard                     id=3    [master keyboard (2)]
↳ Virtual core XTEST keyboard               id=5    [slave  keyboard (3)]
↳ Power Button                              id=6    [slave  keyboard (3)]
↳ Video Bus                                 id=7    [slave  keyboard (3)]
↳ Video Bus                                 id=8    [slave  keyboard (3)]
↳ Power Button                              id=9    [slave  keyboard (3)]
↳ Sleep Button                              id=10   [slave  keyboard (3)]
↳ BisonCam, NB Pro                          id=11   [slave  keyboard (3)]
↳ AT Translated Set 2 keyboard              id=12   [slave  keyboard (3)]
↳ MSI WMI hotkeys                           id=14   [slave  keyboard (3)]
↳ RAPOO RAPOO 2.4G Wireless Device          id=15   [slave  keyboard (3)]

編集:xinput list-props 13 output

Device 'ETPS/2 Elantech Touchpad':
Device Enabled (139):   0
Coordinate Transformation Matrix (141): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
Device Accel Profile (265): 1
Device Accel Constant Deceleration (266):   2.500000
Device Accel Adaptive Deceleration (267):   1.000000
Device Accel Velocity Scaling (268):    12.500000
Synaptics Edges (269):  94, 2262, 66, 1174
Synaptics Finger (270): 1, 1, 0
Synaptics Tap Time (271):   180
Synaptics Tap Move (272):   117
Synaptics Tap Durations (273):  180, 100, 100
Synaptics ClickPad (274):   0
Synaptics Middle Button Timeout (275):  75
Synaptics Two-Finger Pressure (276):    282
Synaptics Two-Finger Width (277):   7
Synaptics Scrolling Distance (278): 53, 53
Synaptics Edge Scrolling (279): 0, 0, 0
Synaptics Two-Finger Scrolling (280):   1, 1
Synaptics Move Speed (281): 1.000000, 1.750000, 0.075131, 0.000000
Synaptics Off (282):    2
Synaptics Locked Drags (283):   0
Synaptics Locked Drags Timeout (284):   5000
Synaptics Tap Action (285): 2, 3, 0, 0, 1, 3, 0
Synaptics Click Action (286):   1, 1, 0
Synaptics Circular Scrolling (287): 0
Synaptics Circular Scrolling Distance (288):    0.100000
Synaptics Circular Scrolling Trigger (289): 0
Synaptics Circular Pad (290):   0
Synaptics Palm Detection (291): 0
Synaptics Palm Dimensions (292):    10, 200
Synaptics Coasting Speed (293): 20.000000, 50.000000
Synaptics Pressure Motion (294):    30, 160
Synaptics Pressure Motion Factor (295): 1.000000, 1.000000
Synaptics Resolution Detect (296):  1
Synaptics Grab Event Device (297):  0
Synaptics Gestures (298):   1
Synaptics Capabilities (299):   1, 0, 1, 1, 1, 1, 1
Synaptics Pad Resolution (300): 31, 31
Synaptics Area (301):   0, 0, 0, 0
Synaptics Noise Cancellation (302): 13, 13
Device Product ID (260):    2, 14
Device Node (261):  "/dev/input/event7"
2
4rlekin

これはxorg-synapticsグリッチのように見えます。

これを解決する方法は、libinputをインストールすることです。 synapticsを置き換えます

走る

Sudo apt-get install xserver-xorg-input-libinput

そして再起動します。

詳細については this Q&A をご覧ください。

注:統一DEを備えたUbuntuはlibinputをまだ完全にサポートしていないため、GUIタッチパッド設定を使用することはできません。ただし、タッチパッドの設定にはCLIを使用できます。

libinputでは、タップはデフォルトで無効になっています。有効にできます。

1
Pilot6