我在帶有 Elantech 觸控板的 Gigabyte Aero 上運行 Ubuntu 16.04 LTS。 xinput 的輸出如下所示:
david@Aero:~$ xinput
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ Bluetooth Mouse M557 id=12 [slave pointer (2)]
⎜ ↳ E-Signal Keyboard id=14 [slave pointer (2)]
⎜ ↳ ETPS/2 Elantech Touchpad id=17 [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)]
↳ Sleep Button id=9 [slave keyboard (3)]
↳ Power Button id=10 [slave keyboard (3)]
↳ Sleep Button id=11 [slave keyboard (3)]
↳ E-Signal Keyboard id=13 [slave keyboard (3)]
↳ Chicony USB 2.0 Camera id=15 [slave keyboard (3)]
↳ AT Translated Set 2 keyboard id=16 [slave keyboard (3)]
編輯:觸控板上 xinput 的詳細資訊:
david@Aero:~$ xinput list-props 17
Device 'ETPS/2 Elantech Touchpad':
Device Enabled (168): 1
Coordinate Transformation Matrix (170): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
Device Accel Profile (296): 1
Device Accel Constant Deceleration (297): 2.500000
Device Accel Adaptive Deceleration (298): 1.000000
Device Accel Velocity Scaling (299): 12.500000
Synaptics Edges (326): 127, 3061, 112, 1973
Synaptics Finger (327): 1, 1, 0
Synaptics Tap Time (328): 180
Synaptics Tap Move (329): 167
Synaptics Tap Durations (330): 180, 100, 100
Synaptics ClickPad (331): 1
Synaptics Middle Button Timeout (332): 0
Synaptics Two-Finger Pressure (333): 282
Synaptics Two-Finger Width (334): 7
Synaptics Scrolling Distance (335): 76, 76
Synaptics Edge Scrolling (336): 0, 0, 0
Synaptics Two-Finger Scrolling (337): 1, 1
Synaptics Move Speed (338): 1.000000, 1.750000, 0.052507, 0.000000
Synaptics Off (339): 1
Synaptics Locked Drags (340): 0
Synaptics Locked Drags Timeout (341): 5000
Synaptics Tap Action (342): 2, 3, 0, 0, 1, 3, 0
Synaptics Click Action (343): 1, 3, 0
Synaptics Circular Scrolling (344): 0
Synaptics Circular Scrolling Distance (345): 0.100000
Synaptics Circular Scrolling Trigger (346): 0
Synaptics Circular Pad (347): 0
Synaptics Palm Detection (348): 0
Synaptics Palm Dimensions (349): 10, 200
Synaptics Coasting Speed (350): 20.000000, 50.000000
Synaptics Pressure Motion (351): 30, 160
Synaptics Pressure Motion Factor (352): 1.000000, 1.000000
Synaptics Resolution Detect (353): 1
Synaptics Grab Event Device (354): 0
Synaptics Gestures (355): 1
Synaptics Capabilities (356): 1, 0, 0, 1, 1, 1, 1
Synaptics Pad Resolution (357): 31, 31
Synaptics Area (358): 0, 0, 0, 0
Synaptics Soft Button Areas (359): 1594, 0, 1709, 0, 0, 0, 0, 0
Synaptics Noise Cancellation (360): 19, 19
Device Product ID (285): 2, 14
Device Node (286): "/dev/input/event8"
Gnome(透過 gnome-settings-daemon?)在登入時啟動 syndaemon 實例:
david@Aero:~$ ps aux | grep syndaemon | grep -v grep
david 4275 0.0 0.0 22372 1164 ? S 08:35 0:00 syndaemon -i 1.0 -t -K -R
然而,“-t”選項在我的機器上有問題。如果我killall syndaemon
使用我的首選選項 ( ) 重新運行它,-i 1.5 -K -d
效果會很好。不幸的是,將我的啟動應用程式的命令設定為killall syndaemon && syndaemon ...
實際上並不會殺死 Gnome 的實例,可能是因為啟動應用程式在 Gnome 運行其實例之前運行。
停用 Gnome 在登入時啟動的 syndaemon 實例的普遍接受的方法是「取消選取滑鼠和觸控板設定中的『鍵入時停用』選項」——但對我來說,該選項不會出現。我猜這是因為我沒有 Synaptics 觸控板?
(我有另一台筆記型電腦,三星 9 系列,配備運行 14.04LTS 的 Elantech 觸控板,做顯示複選框。
所以我需要以下其中之一:
- 一種在不取消選取該方塊的情況下停用 Gnome 登入時啟動 syndaemon 的方法,或者
- 有辦法讓該框出現以便我可以取消選中它嗎?
謝謝!
答案1
我找到了一個可用的解決方法,但仍然有興趣學習是否有「正確」的方法來做到這一點...
我在啟動應用程式命令行中重命名/usr/bin/syndaemon
並/usr/bin/syndaemon.priv
調用了後者。 Gnome 找不到原始 syndaemon 可執行文件,且其呼叫失敗。
答案2
如果您安裝touchpad-indicator
,它具有在打字時停用觸控板的功能,以及您可以配置的許多設定。
如果您在 Synaptic 中沒有看到touchpad-indicator
,您可以前往https://www.atareao.es/apps/touchpad-indicator-para-ubuntu/
獲取更多資訊。
您也可以透過在終端機中輸入以下命令來新增他的儲存庫:
sudo add-apt-repository ppa:atareao/atareao
sudo apt-get update
sudo apt-get install touchpad-indicator
乾杯,艾爾