From the log file:...we need to:Running hook /etc/pm/sleep.d/0000trackpad resume suspend:
/etc/pm/sleep.d/0000trackpad resume suspend: not executable.
...to make it executable. However, there is no change in the settings of synclient before and after suspend, so I'm not sure the file will help as it is written.Code:sudo chmod +x /etc/pm/sleep.d/0000trackpad
Can you try this version of the file instead:
...don't forget to make the file executable.Code:cat /etc/pm/sleep.d/0000trackpad #!/bin/sh case "$1" in suspend|hibernate) modprobe -r psmouse ;; resume|thaw) modprobe psmouse ;; esac



Adv Reply


Bookmarks