此选项在以前的版本中位于“鼠标和触摸板”设置面板中,但由于某种原因,在 16.04 LTS 中消失了。有人知道这是为什么吗,以及/或者如何修复它?谢谢。
答案1
我发现了一个类似问题 AskUbuntu提供了解决此问题所需的详细信息的链接。
简而言之,编辑您的quirks
文件:
sudo vim /usr/share/X11/xorg.conf.d/51-synaptics-quirks.conf
并在文件末尾添加以下内容:
# Disable generic Synaptics device, as we're using
# "DLL0704:01 06CB:76AE Touchpad"
# Having multiple touchpad devices running confuses syndaemon
Section "InputClass"
Identifier "SynPS/2 Synaptics TouchPad"
MatchProduct "SynPS/2 Synaptics TouchPad"
MatchIsTouchpad "on"
MatchOS "Linux"
MatchDevicePath "/dev/input/event*"
Option "Ignore" "on"
EndSection
现在重新启动 Xorg:
sudo systemctl restart lightdm
现在,像syndaemon
往常一样开始:
killall syndaemon
syndaemon -i 0.50 -m 0.10 -d -K
笔记:由于某种原因,直到我完全重新启动笔记本电脑后,双指滚动才起作用,但最终它开始工作。
编辑
当我不得不切换到另一台戴尔笔记本电脑时,我最终按照另一个答案所建议的那样安装了触摸板指示器,并且此修复不再起作用。
答案2
这对我来说很好(ubuntu 16.04):
sudo add-apt-repository ppa:atareao/atareao
sudo apt-get update
sudo apt-get install touchpad-indicator
启动touchpad-indicator
并转到操作菜单。选择打字时禁用触摸板选项。
答案3
答案4
触摸板设置不见了,可能是因为libinput
已安装。它没有 GUI 设置。
在 Ubuntu 16.10 中它是默认安装的。
您可以删除xserver-xorg-input-libinput
或xserver-xorg-input-libinput-hwe-16.04
恢复 GUI,或者使用配置文件进行此类设置。