I faced a small issue after an upgrade to Ubuntu 17.10. My touchpad started to disable after my system wakes up from suspend mode. I tried this temporary method and works for me:
- Create touchpad_wakeup.sh file in your home directory.
Its content is:
sudo rmmod i2c_hid
sudo modprobe i2c_hid
- So next time when my system wakesup: I login my username and password, then open terminal window using the shortcut key Ctrl+Alt+T
Write the following:
sudo bash ./touchpad_wakeup.sh
- Press enter
My touchpad starts working. I want to add this to wakeup sequence (/usr/lib/pm-utils/sleep.d
), but didn't have much success to automate this.
./touchpad_wakeup.sh
. So you can run that file with keyboard shortcut. See this answer on how to do this https://askubuntu.com/a/116110 – Yaksha Oct 25 '17 at 01:47