如何在 Ubuntu 16.04 上禁用触摸板点击?

如何在 Ubuntu 16.04 上禁用触摸板点击?

好吧,我尝试使用“鼠标和触摸板”,但没有任何选项可以禁用点击:

在此处输入图片描述

然后我尝试:

synclient MaxTapTime=0

返回:

Couldn't find synaptics properties. No synaptics driver loaded?

那么如何禁用触摸板上的点击剪辑?

使用 Ubuntu 16.04

在我按照@Vitor 建议的答案解决问题之后,正如我从评论中得到的建议xinput

⎡ Virtual core pointer                      id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ YSTEK USB Mouse                           id=10   [slave  pointer  (2)]
⎜   ↳ eGalax Inc. eGalaxTouch EXC7910-1018-13.00.01 id=13   [slave  pointer  (2)]
⎜   ↳ AlpsPS/2 ALPS GlidePoint                  id=15   [slave  pointer  (2)]
⎜   ↳ PixArt Microsoft USB Optical Mouse        id=12   [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)]
    ↳ HP Truevision HD                          id=11   [slave  keyboard (3)]
    ↳ AT Translated Set 2 keyboard              id=14   [slave  keyboard (3)]
    ↳ HP Wireless hotkeys                       id=16   [slave  keyboard (3)]
    ↳ HP WMI hotkeys                            id=17   [slave  keyboard (3)]

xinput list-props 13

Device 'AT Translated Set 2 keyboard':
    Device Enabled (143):   1
    Coordinate Transformation Matrix (145): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
    Device Product ID (263):    1, 1
    Device Node (264):  "/dev/input/event3"

答案1

重新启动pmouse解决了我的问题(按照@Pilot6 的建议):

在终端上:

sudo modprobe -r psmouse
sudo modprobe psmouse

然后触摸板选项将出现在“鼠标和触摸板”上

在此处输入图片描述

相关内容