LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 09-09-2007, 08:53 PM   #1
randomsel
Member
 
Registered: Oct 2006
Location: Wilmington, DE
Distribution: Slackware 11
Posts: 201

Rep: Reputation: 30
Xorg can't find Synaptics


cat /proc/bus/input/devices
Code:
I: Bus=0011 Vendor=0002 Product=0005 Version=0000
N: Name="ImPS/2 Synaptics TouchPad"
P: Phys=isa0060/serio1/input0
S: Sysfs=/class/input/input3
H: Handlers=mouse1 event3
B: EV=7
B: KEY=70000 0 0 0 0 0 0 0 0
B: REL=103
xorg.conf
Code:
Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Synaptics" "AlwaysCore"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
	RgbPath      "/usr/share/X11/rgb"
	ModulePath   "/usr/lib/xorg/modules"
	FontPath     "/usr/share/fonts/TTF"
	FontPath     "/usr/share/fonts/OTF"
	FontPath     "/usr/share/fonts/Type1"
	FontPath     "/usr/share/fonts/misc"
	FontPath     "/usr/share/fonts/75dpi/:unscaled"
EndSection

Section "Module"
	Load  "record"
	Load  "dri"
	Load  "GLcore"
	Load  "extmod"
	Load  "xtrap"
	Load  "dbe"
	Load  "glx"
	Load  "type1"
	Load  "freetype"
	Load  "synaptics"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
	Option       "XkbModel"  "pc104"
	Option       "XkbLayout"  "us,us(intl)"
	Option       "XkbOptions"  "grp:alt_shift_toggle,grp_led:caps,ctrl:nocaps"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "auto"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
	Identifier  "Synaptics"
	Driver      "synaptics"
	Option      "Protocol" "auto-dev"
	Option      "Device" "/dev/input/mouse1"
	Option      "SendCoreEvents" "true"
	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" "100"
	Option      "MinSpeed" "0.06"
	Option      "MaxSpeed" "0.12"
	Option      "AccelFactor" "0.0010"
	Option      "SHMConfig" "on"
EndSection

Section "Monitor"
	#DisplaySize	  300   190	# mm
	Identifier   "Monitor0"
	VendorName   "CPT"
	ModelName    "1773"
	Option       "DPMS"
EndSection

Section "Device"
	Identifier  "Card0"
	Driver      "intel"
	VendorName  "Intel Corporation"
	BoardName   "Mobile 915GM/GMS/910GML Express Graphics Controller"
	BusID       "PCI:0:2:0"
	Screen      0
	Option      "XVideo"		"On"
	Option	    "MonitorLayout"	"LFP,CRT"
	Option	    "DevicePresence"	"On"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	DefaultDepth 24
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection
Section "DRI"
	Mode 0666
EndSection
#Section "Extensions"
#	Option	"Composite" "enable"
#EndSection
/var/log/Xorg.0.log
Code:
(II) LoadModule: "synaptics"
(II) Loading /usr/lib/xorg/modules/input//synaptics_drv.so
(II) Module synaptics: vendor="X.Org Foundation"
	compiled for 4.3.99.902, module version = 1.0.0
	Module class: X.Org XInput Driver
	ABI class: X.Org XInput driver, version 0.7
(II) LoadModule: "intel"
(II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so
(II) Module intel: vendor="X.Org Foundation"
	compiled for 1.3.0, module version = 2.1.0
	Module class: X.Org Video Driver
	ABI class: X.Org Video Driver, version 1.2
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
	compiled for 7.2.0, module version = 1.1.1
	Module class: X.Org XInput Driver
	ABI class: X.Org XInput driver, version 0.7
(II) LoadModule: "synaptics"
(II) Reloading /usr/lib/xorg/modules/input//synaptics_drv.so
(**) Option "Protocol" "auto"
(**) Mouse0: Device: "/dev/input/mice"
(**) Mouse0: Protocol: "auto"
(**) Option "CorePointer"
(**) Mouse0: Core Pointer
(**) Option "Device" "/dev/input/mice"
(==) Mouse0: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5"
(**) Mouse0: ZAxisMapping: buttons 4 and 5
(**) Mouse0: Buttons: 9
(II) Synaptics touchpad driver version 0.14.6 (1406)
Synaptics no synaptics event device found (checked 17 nodes)
(**) Option "Device" "/dev/input/mouse1"
(**) Option "SHMConfig" "on"
(**) 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" "100"
Query no Synaptics: 6003C8
(EE) Synaptics no synaptics touchpad detected and no repeater device
(EE) Synaptics Unable to query/initialize Synaptics hardware.
(EE) PreInit failed for input device "Synaptics"
(II) UnloadModule: "synaptics"
Any ideas? The synaptics driver is correctly installed, but it can't find the synaptics event device, even when I point it to the correct device.
 
Old 09-09-2007, 09:55 PM   #2
geomatt
Member
 
Registered: Mar 2004
Location: PA
Distribution: Slackware 12.0
Posts: 315

Rep: Reputation: 30
I had the same problem and fixed it by editing the line in /etc/rc.d/rc.modules that says:
Code:
 /sbin/modprobe psmouse proto=imps
to read just:
Code:
 /sbin/modprobe psmouse

-geo
 
Old 09-10-2007, 12:12 AM   #3
randomsel
Member
 
Registered: Oct 2006
Location: Wilmington, DE
Distribution: Slackware 11
Posts: 201

Original Poster
Rep: Reputation: 30
geomatt, you are a godsend
That fixed it. Many, many thanks
 
Old 09-10-2007, 11:18 AM   #4
geomatt
Member
 
Registered: Mar 2004
Location: PA
Distribution: Slackware 12.0
Posts: 315

Rep: Reputation: 30
Quote:
geomatt, you are a godsend
Well I wouldn't go that far! Someone else pointed out that trick to me a few weeks ago. Happy Slacking!
-geomatt
 
Old 10-24-2007, 09:36 PM   #5
Cool Canuck
LQ Newbie
 
Registered: Nov 2005
Distribution: LFS & Slackware
Posts: 9

Rep: Reputation: 12
Never would have found this myself. Thanks.
 
Old 10-24-2007, 10:35 PM   #6
rworkman
Slackware Contributor
 
Registered: Oct 2004
Location: Tuscaloosa, Alabama (USA)
Distribution: Slackware
Posts: 2,559

Rep: Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351
The fact that psmouse has to be loaded with the kernel defaults is also in my recent thread about using synaptics on Slackware -current... :-)
 
Old 10-25-2007, 12:01 PM   #7
BCarey
Senior Member
 
Registered: Oct 2005
Location: New Mexico
Distribution: Slackware
Posts: 1,639

Rep: Reputation: Disabled
A simple search of this forum with the word synaptics would have shown that this question has been answered many times.

Brian
 
Old 10-25-2007, 02:32 PM   #8
iiv
Member
 
Registered: Jun 2007
Location: Russia, Moscow Region
Distribution: Slackware
Posts: 167

Rep: Reputation: 30
When synaptics will be able to compile with X.Org 1.4?
 
Old 10-25-2007, 02:52 PM   #9
rworkman
Slackware Contributor
 
Registered: Oct 2004
Location: Tuscaloosa, Alabama (USA)
Distribution: Slackware
Posts: 2,559

Rep: Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351
http://www.linuxquestions.org/questi...rg-7.3-592525/
 
  


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
Can't find software in synaptics klarsin Ubuntu 1 11-25-2006 10:32 AM
Xorg synaptics driver problems... pda_h4x0r Linux - Software 19 09-09-2006 01:01 AM
Synaptics stops working when Xorg is started on Aspire 1694 gundelgauk Linux - Hardware 2 02-11-2006 08:16 PM
Xorg can't find a file, yet its there kellinjar Linux - Software 3 02-10-2006 05:27 PM
synaptics touch pad with Xorg on Debian seaking Linux - Hardware 0 10-15-2005 03:51 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 01:38 PM.

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