LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 02-01-2005, 03:35 AM   #1
jerry_und_tom
LQ Newbie
 
Registered: Feb 2005
Posts: 7

Rep: Reputation: 0
Logitech wheel Mouse and Touchpad


Hello guys,

i have a problem with my wheelmouse. The wheel works as a third button but
I cann't scroll for now. Im using gentoo and GNOME on my laptop (with touchpad).
My xorg.conf

Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"
# Touchpad
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/mouse"
Option "Emulate3Buttons" "no"
Option "Buttons" "5"
Option "ZAxisMapping" "4 5"
EndSection

everytime when i change my "Protocol" to "IMPS/2" my
touchpad gets crazy (can use it but the cursor jumps randomly around)

Modules:

Input Core Support -->
Mouse support
USB Support -->
UHCI (Intel,...) support
USB Human Interface device support -->
HID Input Layer support
/dev/hiddev/ raw HID suport
USB HIDB mouse basic support

please help me.

Jerry
 
Old 02-01-2005, 05:24 AM   #2
mpapamanz
LQ Newbie
 
Registered: Feb 2005
Location: Italy
Distribution: Gentoo
Posts: 5

Rep: Reputation: 0
can you print what driver uses xorg? because in your config file you select "auto"... but what driver use xorg effectively? you can find it in /var/log/Xorg.0.log
 
Old 02-01-2005, 06:41 AM   #3
theYinYeti
Senior Member
 
Registered: Jul 2004
Location: France
Distribution: Arch Linux
Posts: 1,897

Rep: Reputation: 66
My home page might help with the Logitech mouse:
http://yves.gablin.club.fr/linux/ind...e=config/mouse

Yves.
 
Old 02-01-2005, 11:21 AM   #4
jerry_und_tom
LQ Newbie
 
Registered: Feb 2005
Posts: 7

Original Poster
Rep: Reputation: 0
my Xorg.0.log

i hope this is the right part

(**) Option "Protocol" "auto"
(**) Mouse0: Device: "/dev/mouse"
(**) Mouse0: Protocol: "auto"
(**) Option "CorePointer"
(**) Mouse0: Core Pointer
(**) Option "Device" "/dev/mouse"
(**) Option "Emulate3Buttons"
(**) Mouse0: Emulate3Buttons, Emulate3Timeout: 50
(==) Mouse0: Buttons: 3
(**) Mouse0: SmartScroll: 1
(**) Option "CoreKeyboard"
(**) Keyboard0: Core Keyboard
(**) Option "Protocol" "standard"
(**) Keyboard0: Protocol: standard
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) Keyboard0: XkbRules: "xorg"
(**) Option "XkbModel" "pc105"
(**) Keyboard0: XkbModel: "pc105"
(**) Option "XkbLayout" "de"
(**) Keyboard0: XkbLayout: "de"
(**) Option "CustomKeycodes" "off"
(**) Keyboard0: CustomKeycodes disabled
(II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
(II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
(--) Mouse0: PnP-detected protocol: "PS/2"
(II) Mouse0: ps2EnableDataReporting: succeeded

greez jerry
 
Old 02-02-2005, 03:22 AM   #5
theYinYeti
Senior Member
 
Registered: Jul 2004
Location: France
Distribution: Arch Linux
Posts: 1,897

Rep: Reputation: 66
Yes it's the right part. "PS/2" won't get you anything more than buttons 1, 2, and 3, whatever other config you add. You may try and use my article with different mouse drivers (link to XFree86.org inside my article), until you find the driver that suits your mouse best.

Yves.
 
Old 02-02-2005, 04:56 AM   #6
jerry_und_tom
LQ Newbie
 
Registered: Feb 2005
Posts: 7

Original Poster
Rep: Reputation: 0
Did you use an Touchpad AND and USBMouse in your Tutorial?
 
Old 02-02-2005, 07:00 AM   #7
jerry_und_tom
LQ Newbie
 
Registered: Feb 2005
Posts: 7

Original Poster
Rep: Reputation: 0
OK i changed my conf:

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "PS/2"
Option "Device" "/dev/psaux"
EndSection

Section "InputDevice"
Identifier "USBMouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/mouse"
Option "Protocol" "IMPS/2"
Option "Buttons" "9"
###Option "ZAxisMapping" "4 5"
EndSection

and my log says:

(**) Option "Protocol" "PS/2"
(**) Mouse0: Device: "/dev/psaux"
(**) Mouse0: Protocol: "PS/2"
(**) Option "CorePointer"
(**) Mouse0: Core Pointer
(**) Option "Device" "/dev/psaux"
(==) Mouse0: Emulate3Buttons, Emulate3Timeout: 50
(==) Mouse0: Buttons: 3
(**) Mouse0: SmartScroll: 1
(**) Option "Protocol" "IMPS/2"
(**) USBMouse: Device: "/dev/mouse"
(**) USBMouse: Protocol: "IMPS/2"
(**) Option "CorePointer" "False"
(**) Option "Device" "/dev/mouse"
(**) Option "Buttons" "9"
(==) USBMouse: Emulate3Buttons, Emulate3Timeout: 50
(**) USBMouse: Buttons: 9
(**) USBMouse: SmartScroll: 1
(**) Option "CoreKeyboard"
(**) Keyboard0: Core Keyboard
(**) Option "Protocol" "standard"
(**) Keyboard0: Protocol: standard
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) Keyboard0: XkbRules: "xorg"
(**) Option "XkbModel" "pc105"
(**) Keyboard0: XkbModel: "pc105"
(**) Option "XkbLayout" "de"
(**) Keyboard0: XkbLayout: "de"
(**) Option "CustomKeycodes" "off"
(**) Keyboard0: CustomKeycodes disabled
(II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
(II) XINPUT: Adding extended input device "USBMouse" (type: MOUSE)
(II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)

I understand this as all is ok
or am I'm wrong?
 
Old 02-02-2005, 07:13 AM   #8
theYinYeti
Senior Member
 
Registered: Jul 2004
Location: France
Distribution: Arch Linux
Posts: 1,897

Rep: Reputation: 66
No I don't have a touchpad. So all I know is for a single mouse.
But I think that your mouse and touchpad actually act on the same device (what does this tell?: ls -l /dev/psaux /dev/mouse). I think so because you say, that if you change the mouse protocol from PS/2 to IMPS/2, the touchpad goes crazy, which is impossible, except if touchpad and external mouse are one single device: it is the external mouse that's going crazy, and there's nothing the touchpad can do about it.

Anyway, I think you can forget about the touchpad for now. Concentrate on your mouse, and when it's fully functionnal, then you can see if you're satisfied with the way your touchpad acts.

Now if you want to use your extra buttons or wheels, you can try following my article. There are two things you should know:
- If PS/2 works (basic features), then IMPS/2 won't, and the other way around.
- AFAIK, neither PS/2 nor IMPS/2 is able to provide anything more than buttons 1 (left), 2 (middle), and 3 (right).

Good luck.
Yves.
 
Old 02-02-2005, 10:53 AM   #9
jerry_und_tom
LQ Newbie
 
Registered: Feb 2005
Posts: 7

Original Poster
Rep: Reputation: 0
Shit thats the problem ...

/dev/mouse -> misc/psaux
/dev/psaux -> misc/psaux

how can i change this???
 
Old 02-04-2005, 02:30 AM   #10
theYinYeti
Senior Member
 
Registered: Jul 2004
Location: France
Distribution: Arch Linux
Posts: 1,897

Rep: Reputation: 66
It's time you do some reading. I won't (and can't) give you a ready-to-use conf file.
Did you try other protocols?
Did you run xev?
...

Yves.
 
Old 02-06-2005, 07:12 AM   #11
jerry_und_tom
LQ Newbie
 
Registered: Feb 2005
Posts: 7

Original Poster
Rep: Reputation: 0
Made it!

I changed the modules for USB, and HID support ...
and i get /dev/input/mice ...
and I used it for my usb mouse.

All done
 
Old 02-07-2005, 01:57 AM   #12
theYinYeti
Senior Member
 
Registered: Jul 2004
Location: France
Distribution: Arch Linux
Posts: 1,897

Rep: Reputation: 66
Nice
 
  


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
mouse wheel +laptop touchpad Palamides Slackware 6 02-27-2005 12:34 AM
Synaptics touchpad + USB Logitech MX 700, wheel not working under 2.6 (Mdk 10.0) stevelinton Linux - Laptop and Netbook 0 04-06-2004 09:01 AM
wheel mouse and touchpad fettouhi Linux - Software 9 06-08-2003 08:42 PM
Logitech Wheel Mouse KeithKessler Linux - Newbie 19 03-10-2003 07:35 PM
Logitech Wheel Mouse sxflgsdeja Linux - Hardware 17 01-12-2003 07:59 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 03: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