16

I just installed Ubuntu 11.10 (64 bit) and my touchpad is dead. Some ideas?

Jorge Castro
  • 73,717
Alberto
  • 161

8 Answers8

8

Because it is not working only in Gnome 3 and Unity 3D, you can fix it like this :

  • Install dconf-tools Install dconf-tools
  • Launch it dconf-editor
  • Search for: /org/gnome/settings-daemon/peripherals/touchpad/
  • Check "touchpad-enabled"
Natim
  • 1,197
7

Here is the trick :

sudo modprobe -r psmouse
sudo modprobe psmouse proto=imps
Natim
  • 1,197
4

This worked for me:

System Settings > Mouse and Touchpad > Touchpad

in section General uncheck 'Disable touchpad while typing'. Restart.

cschol
  • 231
0

I found this link with a solution for the same problem when I was troubleshooting another synaptics touchpad problem:

0

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.

P05TMAN
  • 415
0

https://bugs.launchpad.net/ubuntu/+bug/804109

Comment #32 contains a fix for Elantech touchpads. Check if your dell has one.

Jussi
  • 1
0

It appears something political happened, but either way the touchpads have technically changed brand.

To fix:

  1. edit the file /etc/acpi/asus-touchpad.sh (you'll probably need sudo)
  2. 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.

0

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

cmdematos
  • 259