I just installed Ubuntu 11.10 (64 bit) and my touchpad is dead. Some ideas?
8 Answers
Because it is not working only in Gnome 3 and Unity 3D, you can fix it like this :
- Install dconf-tools

- Launch it
dconf-editor - Search for:
/org/gnome/settings-daemon/peripherals/touchpad/ - Check "touchpad-enabled"
This worked for me:
System Settings > Mouse and Touchpad > Touchpad
in section General uncheck 'Disable touchpad while typing'. Restart.
- 231
I found this link with a solution for the same problem when I was troubleshooting another synaptics touchpad problem:
- 1
I had the same issue right after upgrading to 11.10 on my Dell Inspiron. What I did was install Synaptiks touchpad management from the Ubuntu Software center, logged out, then logged back in. Now my touchpad is working well.
- 415
https://bugs.launchpad.net/ubuntu/+bug/804109
Comment #32 contains a fix for Elantech touchpads. Check if your dell has one.
- 1
It appears something political happened, but either way the touchpads have technically changed brand.
To fix:
- edit the file
/etc/acpi/asus-touchpad.sh(you'll probably needsudo) - change the following line:
XINPUTNUM=`xinput list | grep 'SynPS/2 Synaptics TouchPad' | sed -n -e's/.*id=\([0-9]\+\).*/\1/p'`
to:
XINPUTNUM=`xinput list | grep 'ETPS/2 Elantech Touchpad' | sed -n -e's/.*id=\([0-9]\+\).*/\1/p'`
Source: This question was posed here on launchpad.net, and the solution is on this post.
- 1,228
I had the same problem on an XPS17 L702x. Its pretty simple to fix, just disable the flag to 'Disable touchpad while typing'. There are more tunable things you may be interested in to get your XPS all working sweetly. All the information is here...
http://www.cmdematos.com/2011/10/ubuntu-1110-oneric-on-dell-xps17-l702x.html
- 259