LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 12-27-2007, 02:10 AM   #1
addux
Member
 
Registered: Dec 2006
Location: In the middle of the ocean.
Distribution: Ubuntu 12.04, Debian Squeeze, Windows 7
Posts: 67

Rep: Reputation: 16
Synaptics Debian


I'm having some issues with my synaptics touchpad on my Debian etch system. I have the file xserver-xorg-input-synaptics installed and the following xorg.conf entry:
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "PS/2"
Option "HorizScrollDelta" "0"
Option "Emulate3Buttons" "true"
EndSection
lsmod doesn't show any 'synaptics' module loaded. I have gsynaptics installed to configure the touchpad, but it is useless right now. My touchpad works but is far from convenient and far from fully functional. Suggestions?

Thanks again
 
Old 12-27-2007, 04:18 AM   #2
tommytomthms5
Member
 
Registered: Sep 2007
Distribution: debian based
Posts: 308

Rep: Reputation: Disabled
i might be able to help....

i wrote this a while back its pretty stupid but it could help

http://www.freewebs.com/tommytomthms5/
 
Old 12-27-2007, 07:15 AM   #3
masonm
Senior Member
 
Registered: Mar 2003
Location: Following the white rabbit
Distribution: Slackware64 -current
Posts: 2,300

Rep: Reputation: 90
Check your xorg log file. Find the section about the touchpad and see if there are any error messages about it.

Also check out dmesg to see how the kernel is identifying the touchpad during boot.

You can post the info here and it will help figure things out.
 
Old 12-27-2007, 11:24 PM   #4
addux
Member
 
Registered: Dec 2006
Location: In the middle of the ocean.
Distribution: Ubuntu 12.04, Debian Squeeze, Windows 7
Posts: 67

Original Poster
Rep: Reputation: 16
Out put from cat /var/log/Xorg.0.log | grep synaptic

(II) LoadModule: "synaptics"
(II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
(II) Module synaptics: vendor="The XFree86 Project"
(II) LoadModule: "synaptics"
(II) Reloading /usr/lib/xorg/modules/input/synaptics_drv.so

and some tweaking I did on my xorg.conf file. I finally got more function from the touchpad but still lacking features such as 'right-edge' scrolling and what not. also when I was able to breath a little bit of life into the touchpad qsynaptics would not work. and vice versa. here is some of my xorg.conf file and thanks again.


Section "Module"
Load "bitmap"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "vbe"
Load "synaptics"
EndSection


Section "InputDevice"
Identifier "Synaptics Mouse"
Driver "synaptics"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "LeftEdge" "1700"
Option "RightEdge" "5300"
Option "TopEdge" "1700"
Option "BottomEdge" "4200"
Option "FingerLow" "25"
Option "FingerHigh" "30"
Option "MaxTapTime" "180"
Option "MaxTapMove" "220"
Option "VertScrollDelta" "1"
Option "MinSpeed" "0.09"
Option "MaxSpeed" "0.18"
Option "AccelFactor" "0.0015"
Option "SHMConfig" "on"
# Option "Repeater" "/dev/ps2mouse"
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "Synaptics Mouse"
Option "AIGLX" "on"
EndSection

Syntax errors? and as of right now, with this setup my touchpad doesn't work at all (It was working earlier). Thanks
 
Old 12-28-2007, 01:22 PM   #5
addux
Member
 
Registered: Dec 2006
Location: In the middle of the ocean.
Distribution: Ubuntu 12.04, Debian Squeeze, Windows 7
Posts: 67

Original Poster
Rep: Reputation: 16
masonm, Thanks for pointing me in the right direction, after my last post I found some info and got everything working properly. I was missing a few key lines from my xorg.conf file. For whom it may concern here is my working copy of xorg.conf after a proper build and install of my synaptics driver.

Section "Module"
.....
Load "synaptics"
.....
EndSection

Section "InputDevice"
Identifier "Synaptics Mouse"
Driver "synaptics"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "LeftEdge" "120"
Option "RightEdge" "830"
Option "TopEdge" "120"
Option "BottomEdge" "650"
Option "FingerLow" "14"
Option "FingerHigh" "15"
Option "MaxTapTime" "180"
Option "MaxTapMove" "110"
Option "EmulateMidButtonTime" "75"
Option "VertScrollDelta" "20"
Option "HorizScrollDelta" "20"
Option "MinSpeed" "0.3"
Option "MaxSpeed" "0.75"
Option "AccelFactor" "0.015"
Option "EdgeMotionMinSpeed" "200"
Option "EdgeMotionMaxSpeed" "200"
Option "UpDownScrolling" "1"
Option "CircularScrolling" "1"
Option "CircScrollDelta" "0.1"
Option "CircScrollTrigger" "2"
Option "SHMConfig" "on"
Option "SHMConfig" "true"

EndSection

Section "ServerLayout"
.....
InputDevice "Configured Mouse" "CorePointer"
InputDevice "Synaptics Mouse" "AlwaysCore"
.....
EndSection


**I'm not sure if the SHMConfig area is redundant.

Thanks for the help
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
synaptics touch pad with Xorg on Debian seaking Linux - Hardware 0 10-15-2005 03:51 AM
Synaptics Question DaveAtFraud Linux - Laptop and Netbook 5 08-02-2005 12:06 PM
synaptics rmakers Linux - Laptop and Netbook 4 04-10-2005 08:11 PM
Synaptics not working Iroxorsju Debian 3 04-15-2004 11:08 AM
Synaptics Touchpad beatupbilly Fedora 2 01-14-2004 11:14 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 08:35 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration