View previous topic :: View next topic |
Author |
Message |
sall Guru


Joined: 08 Jun 2008 Posts: 314 Location: WV, USA
|
Posted: Sun Mar 01, 2009 6:55 am Post subject: Cannot get synaptic drivers to work [SOLVED!] |
|
|
I have never had a problem getting synaptics touchpad driver to work.
I have:
Code: |
x11-drivers/xf86-input-synaptics
Latest version available: 1.0.0
Latest version installed: 1.0.0
Size of files: 279 kB
Homepage: http://cgit.freedesktop.org/xorg/driver/xf86-input-synaptics/
Description: Driver for Synaptics touchpads
License: MIT
|
My /etc/make.conf has:
Code: |
INPUT_DEVICES:"keyboard mouse synaptics"
|
Not sure what I am missing? Any ideas? Thanks in advance! _________________ Sall
* AMD Turion(tm) 64 Mobile Technology ML-32
* 1Gb RAM
* 2.6.27-gentoo-r8 x86_64
* Xfce4
Last edited by sall on Sun Mar 01, 2009 11:59 pm; edited 1 time in total |
|
Back to top |
|
 |
audiodef Watchman


Joined: 06 Jul 2005 Posts: 6656 Location: The soundosphere
|
|
Back to top |
|
 |
sall Guru


Joined: 08 Jun 2008 Posts: 314 Location: WV, USA
|
Posted: Sun Mar 01, 2009 10:16 pm Post subject: |
|
|
Cannot scroll with touchpad or tap. Just moves cursor back and forth instead of scrolling. _________________ Sall
* AMD Turion(tm) 64 Mobile Technology ML-32
* 1Gb RAM
* 2.6.27-gentoo-r8 x86_64
* Xfce4
Last edited by sall on Sun Mar 01, 2009 10:48 pm; edited 1 time in total |
|
Back to top |
|
 |
audiodef Watchman


Joined: 06 Jul 2005 Posts: 6656 Location: The soundosphere
|
|
Back to top |
|
 |
sall Guru


Joined: 08 Jun 2008 Posts: 314 Location: WV, USA
|
Posted: Sun Mar 01, 2009 10:45 pm Post subject: |
|
|
Xfce4 _________________ Sall
* AMD Turion(tm) 64 Mobile Technology ML-32
* 1Gb RAM
* 2.6.27-gentoo-r8 x86_64
* Xfce4 |
|
Back to top |
|
 |
sephiroth2 n00b

Joined: 17 Apr 2008 Posts: 53
|
Posted: Sun Mar 01, 2009 11:32 pm Post subject: |
|
|
Hi,
try to modify the device section of synaptics in your xorg.conf like that:
Code: | Section "InputDevice"
Driver "synaptics"
Identifier "the_name_given"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "SHMConfig" "on"
Option "TapButton1" "1"
Option "TapButton3" "3"
Option "VertEdgeScroll" "true"
Option "HorizEdgeScroll" "true"
Option "VertTwoFingerScroll" "true"
EndSection |
Then, relaunch your X server. |
|
Back to top |
|
 |
sall Guru


Joined: 08 Jun 2008 Posts: 314 Location: WV, USA
|
Posted: Sun Mar 01, 2009 11:44 pm Post subject: |
|
|
Alright, in my /etc/X11/xorg.conf file I have:
Code: |
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
|
Should I replace that with your mentioned:
Code: |
Section "InputDevice"
Driver "synaptics"
Identifier "mouse0"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "SHMConfig" "on"
Option "TapButton1" "1"
Option "TapButton3" "3"
Option "VertEdgeScroll" "true"
Option "HorizEdgeScroll" "true"
Option "VertTwoFingerScroll" "true"
EndSection
|
*Update*
Replaced with above and worked great. Thanks! _________________ Sall
* AMD Turion(tm) 64 Mobile Technology ML-32
* 1Gb RAM
* 2.6.27-gentoo-r8 x86_64
* Xfce4
Last edited by sall on Sun Mar 01, 2009 11:58 pm; edited 2 times in total |
|
Back to top |
|
 |
audiodef Watchman


Joined: 06 Jul 2005 Posts: 6656 Location: The soundosphere
|
|
Back to top |
|
 |
|