由于某些原因,此选项在以前的版本中的“鼠标和触摸板”设置面板中存在,但在16.04 LTS中由于某种原因而没有。有谁知道这是为什么,和/或如何解决?谢谢。
synaptics
,xorg-input
并且其中任何一个都使设置恢复。
由于某些原因,此选项在以前的版本中的“鼠标和触摸板”设置面板中存在,但在16.04 LTS中由于某种原因而没有。有谁知道这是为什么,和/或如何解决?谢谢。
synaptics
,xorg-input
并且其中任何一个都使设置恢复。
Answers:
我发现了一个类似的问题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
注意:由于某些原因,直到我完全重新启动笔记本电脑后,两指滚动才起作用,但最终它开始起作用。
最终,当我不得不切换到另一台Dell笔记本电脑时,我最终像另一个答案所建议的那样安装了触摸板指示器,并且此修复程序不再起作用。
这对我来说很好(ubuntu 16.04):
sudo add-apt-repository ppa:atareao/atareao
sudo apt-get update
sudo apt-get install touchpad-indicator
启动touchpad-indicator
,然后转到“ 操作”菜单。选择“ 键入时禁用触摸板”选项。
killall syndaemon
首先。
在Internet上搜索此问题的答案时,我发现了一个页面,建议使用syndaemon来完成此操作(位于此处:http : //www.webupd8.org/2009/11/ubuntu-automatically-disable-touchpad.html) 。我在终端中使用了命令“ syndaemon -i 2 -d -K”来满足我的需要。此命令会在键入两秒钟(-i 2)时禁用触摸板,除非使用了Alt或Shift等修饰键(-K)。
希望有帮助!
syndaemon -i 10 -d -K
仍然会禁用2秒,而不是10秒
在gnome中存在一个可以完美工作的扩展程序:https : //extensions.gnome.org/extension/131/touchpad-indicator/
gnome-shell
或ubuntu-gnome-desktop
过或正在使用的Ubuntu GNOME的味道。