我有一台 HP Compaq Tc4400,配备 2.5GB RAM 和 Intel Core Duo T5600 / 1.83 GHz。我有 Ubuntu 16.04 LTS,我无法使用触控板向下滚动。右侧的触控板上有一个允许在页面中向下滚动的网站,在 Windows 中可以使用,但在 Ubuntu 中,当我尝试使用时,鼠标会向下移动。
ls -l /usr/share/X11/xorg.conf.d http://pastebin.com/UWeV9dnm
我该如何修复它?
提前致谢。
答案1
尝试
synclient VertEdgeScroll=1
看看是否允许您使用触控板的右边缘滚动。
如果确实如此,您可以使用您喜欢的编辑器创建文件以使更改永久生效/usr/share/X11/xorg.conf.d/60-synaptics-options.conf
。例如,使用gedit
:
sudo gedit /usr/share/X11/xorg.conf.d/60-synaptics-options.conf
然后将以下内容放入文件中
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Option "VertEdgeScroll" "1"
EndSection