Mar
18
Ubuntu Configure Disable Touchpad
March 18, 2008 |
If you are a laptop user, you should know how irritating it is when your thumb accidentally brushes the touchpad, which leads to you continuing to type things in entirely a different place. And if you are a laptop user and….a Ubuntu user, you may not know how easy it is to fix this problem! Let’s configure your laptop step by step to disable touchpad temporarily when typing.
1. Preparing Your X11 Configuration
In order to use the configuration program for your touchpad, first you must edit the X11 configuration to add a directive to enable shared memory in the Xserver. The permissions on the X11 configuration are restricted, so you need to make this change using sudo. Back up the configuration file:
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.old
Then edit the file:
sudo nano /etc/X11/xorg.conf
Once you get the file open, you should see a section pertaining to the touchpad. It may look like this:
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizScrollDelta" "0"
EndSection
You’ll need to add a line in that section of the file (before the EndSection line) with the SHMConfig option set to on (this will allow you to use the GUI client to make changes without restarting the Xorg server). Here is a sample snippet after editing:
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizScrollDelta" "0"
Option “SHMConfig” “on”
EndSectionAt
At this point, save the file and before you go any further, bookmark this blog article you are reading now. Cos you are going to reboot your system. Now you are reboot (or log out, switch to a console with Ctrl-Alt-F1, log in, and run the command sudo /etc/init.d/gdm restart) to load the new X11 configuration.
Assuming that your configuration works, you should now install the configuration program for the touchpad: qsynaptics.
2. Installing qsynaptics
Much like any other software installation, qsynaptics can be installed by using apt-get or aptitude from a terminal:
sudo aptitude install qsynaptics
3. Configuring the Touchpad with QSynaptics
QSynaptics is a graphical program, so it can be run from within the GNOME desktop. To start it, launch a terminal and run:
qsynaptics
The QSynaptics dialog will appear (see image below). The General tab lets you enable or disable the extended features of the Synaptics touchpad driver.
![]() |
Tapping gestures are configured on the Tapping tab, shown in the following image.
![]() |
You can disable tapping altogether, insert a tap-disabling delay after any keyboard press, and create tap gestures for one-, two-, or three-finger taps.
Similar Posts
- Install and Configure phpMyAdmin on Ubuntu LAMP
- Ubutu Root Password
- Install and Configure Wine on Ubuntu
- Make Acer Extensa 4620Z Wireless Work on Ubuntu
- Install and Configure LAMP on Ubuntu
- Ubuntu Seperate Audio From Video
- Ubuntu Hardy Broadcom Wireless Setup
- Manage Ubuntu Repository
- Create a Subdomain Virtual Host on Ubuntu
- Ubuntu’s Equivalent to Task Manager
- Make Acer Extensa headphone speakers Work on Ubuntu
- Install BitTorrent GUI Azureus on Ubuntu
- Use aMule as eMule alternative on Ubuntu
- SCIM Filesystem Name Rename Problem
- Linux Ubuntu Install Setup PHP cURL
- Create Read View Edit Excel File on Ubuntu
- Play iTunes m4a Files on Linux Ubuntu
- Ubuntu Best CHM Viewer
- Create Compile and Run .NET on Ubuntu
- Wireless Keyboard with Ubuntu
- Ubuntu Convert Ogg Flac to mp3
- Force Quit on Ubuntu
- Use New iPod Nano with Ubuntu
- Install Run and Play Doom 3 on Ubuntu
- Install Adobe AIR for Linux Beta on Ubuntu
- Check RAM Usage on Ubuntu
- Transfer music mp3 to and from iPod Ubuntu
- Install and Play Quake III Arena on Ubuntu
- Switch Ubuntu Server to Desktop
- Install and Use Skype on Ubuntu
- Install Java Plugin on Ubuntu Firefox
- Install and Use Audacity on Ubuntu
- Use Bonjour to Chat on Ubuntu
- Install and Run RealPlayer on Ubuntu
- Burn Blu-Ray Disc on Ubuntu
- Ubuntu Upgrade From Gutsy to Hardy Problem Fix
- Install Google Earth on Ubuntu
- Install and Play Counter Strike on Ubuntu
- Install and Play Enemy Territory Quake Wars on Ubuntu
- Burn Iso on Ubuntu
- Ubuntu Configure Mouse for Left Hand
- Install and Play Unreal Tournament on Ubuntu
- Install and Play Red Alert 2 on Ubuntu
- Best BitTorrent Client On Ubuntu
- Ubuntu DVD Region Reassignment
- Install and Play Quake 4 on Ubuntu
- Install IE6 using IEs 4 Linux on Ubuntu
- Manipulate Files Directories using Unix Shell
- Install Photoshop on Ubuntu
- Virus on Ubuntu Wine
Comments
2 Comments so far





































I have just tried QSynaptics, it’s much easier than manually configure the touchpad using shell srcipt. very nice discovery, dude!
I used to manually configure touchpad too, but I found that to use QSynaptics is much easier.