我在 Thinkpad T480 上运行 Ubuntu 18.04,双指滚动似乎在随机时间不起作用,现在根本不起作用。
可以使用一些帮助来排除故障。
答案1
我有同样的问题
您可以通过以下方式重新启动触摸板:
sudo modprobe -r psmouse
然后,
sudo modprobe psmouse
如果您每次从挂起状态唤醒时都遇到此问题,请复制此脚本:
#!/bin/sh
case $1/$2 in
pre/*)
echo "Going to $2..."
# Place your pre suspend commands here, or `exit 0` if no pre suspend action required
modprobe -r psmouse
;;
post/*)
echo "Waking up from $2..."
# Place your post suspend (resume) commands here, or `exit 0` if no post suspend action required
sleep 2
modprobe psmouse
;;
esac
现在,将其放在 /usr/systemd/system-sleep 文件夹中,并根据需要命名。
现在,输入sudo chmod +x "whatever you named your script"
答案2
合上盖子以暂停并唤醒笔记本电脑就可以解决这个问题。
答案3
设置中可能有一个选项。检查触摸板设置,或尝试重新安装触摸板驱动程序。