WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: Removing touch pad tapping on Sony Vaio  (Read 1926 times)

Offline aplannan

  • Jr. Member
  • **
  • Posts: 70
Removing touch pad tapping on Sony Vaio
« on: July 17, 2011, 02:25:17 PM »
Hello,

I'm trying to remove the tapping function from the touch pad on a Sony Vaio S360. I am using the Xorg-7.5 extention which includes the syntaptic driver. However when I try to use "synclient -l" I recieve the following message:

Couldn't find synaptics properties. No synaptics driver loaded?

Do I have to manually load the driver, or should it be up and running by default.

Thanks

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14743
Re: Removing touch pad tapping on Sony Vaio
« Reply #1 on: July 17, 2011, 11:27:49 PM »
You need an entry in your xorg.conf to load the synaptics driver, something like:
Code: [Select]
Section "ServerLayout"
Identifier "X.org Configured"
Screen      0  "Screen0" 0 0
InputDevice "DualPoint Stick" "CorePointer"
InputDevice "Alps Touchpad"  "SendCoreEvents"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"
Identifier  "DualPoint Stick"
Driver      "evdev"
# Option     "Protocol" "auto"
Option     "Device" "/dev/input/event5"
# Option     "ZAxisMapping" "4 5 6 7"
EndSection

Section "InputDevice"
Identifier "Alps Touchpad"
Driver  "synaptics"
Option "Device"  "/dev/input/event6"
# Option "Protocol" "auto-dev"
Option "SHMConfig" "true"
Option "GuestMouseOff" "false"
Option "TouchpadOff" "1"
EndSection

Offline aplannan

  • Jr. Member
  • **
  • Posts: 70
Re: Removing touch pad tapping on Sony Vaio
« Reply #2 on: March 08, 2012, 09:02:34 AM »
Hi,

I just wanted to thank you (very belatedly) for your help. I just figured out how to do this on my computer. The issue was that I did not understand that I needed to create an xorg.conf file not edit the xorg.conf.vesa file. Newbie mistake, but once I did that it was pretty easy. Thanks.