一段时间以来,我的 Linux 发行版 (Kubuntu 18.04) 一直存在问题。每次我的 Linux 从待机模式恢复时,触摸板都无法正常工作(无法抓取和拖动文件或其他对象)。
我已经找到了解决我的问题的方法:
modprobe psmouse -r
modprobe psmouse
此代码确实解决了问题。但是,在此之后,我总是在启动时禁用的右键单击区域再次启用。我有一个在启动时运行的脚本,它执行以下操作:
synclient RightButtonAreaLeft=0
synclient RightButtonAreaTop=0
我现在想做的是编写一个脚本,该脚本在系统从待机模式唤醒时运行。我编写的脚本如下:
#!/bin/bash
exec 1> /home/luc/Schreibtisch/update.log 2>&1
set -x
case $1/$2 in
pre/*)
echo "Going to $2..."
# Place your pre suspend commands here, or `exit 0`
# if no pre suspend action required
exit 0
;;
post/*)
echo "Waking up from $2..."
sh /home/luc/Schreibtisch/test.sh
sh /home/luc/Schreibtisch/test2.sh
;;
esac
其中 test.sh 运行modprobe
命令,test2.sh 运行synclient
命令。
进入待机模式并再次唤醒后,我收到以下日志:
+ case $1/$2 in
+ echo 'Waking up from suspend...'
Waking up from suspend...
+ sh /home/luc/Schreibtisch/test.sh
+ sh /home/luc/Schreibtisch/test2.sh
Failed to connect to X Server.
Failed to connect to X Server.
文件的抓取和拖动功能完美运行,但右键单击仍然可用。
synclient
我现在的问题是X 服务器准备就绪后是否可以执行命令?
敬礼百事可乐
答案1
看起来我已经找到了解决触摸板唤醒后无法正常工作的问题的方法。
在我的/etc/modprobe.d/blacklist.conf
模块中,该模块i2c_i801
被列入了黑名单。从黑名单中删除该模块后,我的触摸板在待机模式后现在可以正常工作。