[update] Since gutsy, touchpad options have been included in the Touchpad tab of the Mouse preferences window. To find them, go to System > Preferences > Mouse, and then click on the “Touchpad” tab. You can then simply uncheck “Enable mouse clicks with touchpad.”
I don’t know if this bothers everyone, but I always seem to accidentally hit my touchpad when I’m typing, putting the cursor somewhere else while I’m still typing. This can be very frustrating. So I just turned off the tap-click “feature” of my Synaptics touchpad.
Before we start, it is important to make a backup of the file we are going to edit. If you make a mistake it is possible that your desktop environment will not start. So, open a terminal (Applications, Accessories, Terminal) and run the following command:
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.backup_touchpad
If you do make a mistake and end up without a desktop environment (X won’t start) then simply hit ctrl+alt+F1 to get to a virtual terminal and run the following commands:
sudo cp /etc/X11/xorg.conf.backup_touchpad /etc/X11/xorg.conf
sudo /etc/init.d/gdm restart
You should probably write down the above commands if you don’t know what they mean.
Now that we’ve backed up the file, we can edit it:
sudo gedit /etc/X11/xorg.conf
Next find the Synaptics Touchpad Section. It will look something like this:
Section “InputDevice”
Identifier “Synaptics Touchpad”
Driver “synaptics”
Option “SendCoreEvents” “true”
Option “Device” “/dev/psaux”
Option “Protocol” “auto-dev”
EndSection
Simply add the following line before “EndSection” just like the other options:
Option "MaxTapTime" "0"
Save the file (Ctrl+S) and restart your X server by hitting Ctrl+Alt+Backspace, and tap-to-click should be disabled.
If you want to just make it less sensitive, increase the value from 0.