When the trackpad stops responding, this leaves me unable to do anything, including shutting down. Is there a fix?
Asked
Active
Viewed 617 times
2 Answers
2
Known problem, after updating and rebooting the problem usually gets fixed. Here are instructions on how to do all that using the keyboard.
- Press
CTRL+ALT+T. This should bring up a terminal. sudo apt-get updatesudo apt-get dist-upgradesudo reboot
RobinJ
- 9,020
0
sudo nano /etc/X11/xorg.conf
Section "InputClass"
Identifier "Apple Magic Trackpad"
MatchIsTouchpad "on"
MatchUSBID "05ac:030e"
Driver "synaptics"
Option "VertScrollDelta" "50"
Option "HorizScrollDelta" "50"
Option "MinSpeed" "0.6"
Option "MaxSpeed" "1.3"
Option "AccelFactor" "0.08"
# these two options are for multiple monitors 3:1 ratio.
Option "VertResolution" "1"
Option "HorizResolution" "3"
Option "SHMConfig" "True"
EndSection
/etc/init.d/lightdm restart
Benjamin Stürmer
- 109