I have Ubuntu 10.10 Maverick Meerkat installed. The problem is that the tap to click feature on my touchpad is too sensitive in ubuntu. It works fine with windows. I randomly end up clicking things while moving the mouse. Its very irritating. Any solutions ? I have a HP Probook 4410s laptop.

link|improve this question

61% accept rate
Would it be acceptable to turn it off? I assume the trackpad has real buttons nearby. – CajunLuke Jan 6 '11 at 15:16
i mean i could probably get used to it being off. But i would prefer a fix rather than avoiding the problem. – tapan Jan 6 '11 at 15:30
feedback

2 Answers

This works for me in Ubuntu 10.10

To see what trackpad you've got and what it's called, try:

xinput list

My device is called "SynPS/2 Synaptics TouchPad"

There are 3 finger pressure settings: low, high & press. See what their current values are with something like:

xinput list-props "SynPS/2 Synaptics TouchPad" |grep -i finger

Change the values with something like:

xinput set-prop "SynPS/2 Synaptics TouchPad" "Synaptics Finger" 50 90 255

By increasing the second parameter, you require more finger pressure for the trackpad to respond. The first parameter controls release pressure, the third is to detect a button press (I think).

link|improve this answer
I needed to put commas in between the numerical values, as running it without commas resulted in a non-functioning trackpad. Also, my values were 12, 35, 255, in case someone tries it and 50, 90, 255 makes clicking not work at all. I have an ALPS GlidePoint. – lolo Mar 29 at 13:03
feedback

This may be silly but do you have gpointing-device-settings installed?

dpkg --get-selections | grep gpointing

Should show it if you do have it installed. If not try installing it with apt-get or aptitude.

link|improve this answer
1  
i do have it installed. No options from there really helped. – tapan Jan 7 '11 at 8:27
feedback

protected by Community Apr 23 at 16:08

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.