LinuxQuestions.org
Help answer threads with 0 replies.
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 12-03-2003, 04:32 PM   #1
Ken Ju-On
Member
 
Registered: Jun 2003
Location: Unstable
Distribution: Slackware 9.1, Mandrake 9.1, SuSE 8.2, Mandrake 9.2
Posts: 108

Rep: Reputation: 15
Unhappy Logitech USB Mouse Wheel not working on Slackware 9.1


I know this question has been asked umpteen times, and I have followed the wisdom of "Google ten minutes, then use Search ten minutes, then don't crack your head." Now, to avoid cracking my head, I wish to know how to make my Logitech USB Mouse Wheelwork on Slackware 9.1.

Here's the part of my XF86Config file, which I think is relevant to the problem:

Code:
# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************

Section "InputDevice"

# Identifier and driver

    Identifier	"Mouse1"
    Driver	"mouse"

# On platforms where PnP mouse detection is supported the following
# protocol setting can be used when using a newer PnP mouse:

#    Option     "Protocol"      "Auto"

# The available mouse protocols types that you can set below are:
#    Auto BusMouse GlidePoint GlidePointPS/2 IntelliMouse IMPS/2
#    Logitech Microsoft MMHitTab MMSeries Mouseman MouseManPlusPS/2
#    MouseSystems NetMousePS/2 NetScrollPS/2 OSMouse PS/2 SysMouse
#    ThinkingMouse ThinkingMousePS/2 Xqueue
    Option "Protocol"    "PS/2"
    Option "ZAxisMapping" "4 5" 

# The mouse device.  The device is normally set to /dev/mouse,
# which is usually a symbolic link to the real device.

    Option "Device"      "/dev/mouse"
#   Option "Device"      "/dev/psaux"
#   Option "Device"      "/dev/ttyS0"
#   Option "Device"      "/dev/ttyS1"

# When using XQUEUE, comment out the above two lines, and uncomment
# the following line.

#    Option "Protocol"	"Xqueue"

# Baudrate and SampleRate are only for some Logitech mice. In
# almost every case these lines should be omitted.

#    Option "BaudRate"		"9600"
#    Option "SampleRate"	"150"

# Emulate3Buttons is an option for 2-button Microsoft mice
# Emulate3Timeout is the timeout in milliseconds (default is 50ms)

#    Option "Emulate3Buttons"
#    Option "Emulate3Timeout"    "50"

# ChordMiddle is an option for some 3-button Logitech mice

#    Option "ChordMiddle"

EndSection

# Some examples of extended input devices

# Section "InputDevice"
#    Identifier "spaceball"
#    Driver     "magellan"
#    Option     "Device"        "/dev/cua0"
# EndSection
#
# Section "InputDevice"
#    Identifier "spaceball2"
#    Driver     "spaceorb"
#    Option     "Device"        "/dev/cua0"
# EndSection
#
# Section "InputDevice"
#    Identifier "touchscreen0"
#    Driver     "microtouch"
#    Option     "Device"        "/dev/ttyS0"
#    Option     "MinX"          "1412"
#    Option     "MaxX"          "15184"
#    Option     "MinY"          "15372"
#    Option     "MaxY"          "1230"
#    Option     "ScreenNumber"  "0"
#    Option     "ReportingMode" "Scaled"
#    Option     "ButtonNumber"  "1"
#    Option     "SendCoreEvents"
# EndSection
#
# Section "InputDevice"
#    Identifier "touchscreen1"
#    Driver     "elo2300"
#    Option     "Device"        "/dev/ttyS0"
#    Option     "MinX"          "231"
#    Option     "MaxX"          "3868"
#    Option     "MinY"          "3858"
#    Option     "MaxY"          "272"
#    Option     "ScreenNumber"  "0"
#    Option     "ReportingMode" "Scaled"
#    Option     "ButtonThreshold"       "17"
#    Option     "ButtonNumber"  "1"
#    Option     "SendCoreEvents"
# EndSection

The line in red is the only part I added, in an attempt to make the wheel work. To the best of my knowledge, nothing else has changed since the Slackware installation.

But the wheel does not work yet. What could I be doing wrong here?
 
Old 12-03-2003, 05:33 PM   #2
burnpile
Member
 
Registered: Dec 2003
Location: Almost Heaven, West Virginia
Distribution: Slackware
Posts: 327

Rep: Reputation: 30
change the line above ZAxismapping to the IMPS/2 protocol. It should work then
 
Old 12-03-2003, 05:50 PM   #3
PbO
Member
 
Registered: Nov 2003
Location: BC, Canada
Distribution: Slackware 11.0
Posts: 30

Rep: Reputation: 15
I would second burnpile's suggestion. IMPS/2 was what worked for my Logitech USB Wheel Mouse.

Good luck.
 
Old 12-03-2003, 07:52 PM   #4
dufferin
Member
 
Registered: Nov 2003
Location: Mt Dufferin
Distribution: Slackware 12.2
Posts: 73

Rep: Reputation: 15
Gotta get this straight . . .

So should the line read:

Option "Protocol" "IMPS/2"
or
Option "ZAxisMapping" "IMPS/2"

And ,will it work with my:
(Micro$oft WheelMouse - hey, it was a gift . . .)

Thanks, John.
 
Old 12-03-2003, 07:59 PM   #5
burnpile
Member
 
Registered: Dec 2003
Location: Almost Heaven, West Virginia
Distribution: Slackware
Posts: 327

Rep: Reputation: 30
Option "Protocol" "IMPS/2"
Option "ZAxisMapping" "4 5"

should work with a 3 button MS wheel mouse.
for the 5 button version try
Option "ZAxisMapping" "6 7"
 
Old 12-04-2003, 10:42 AM   #6
dufferin
Member
 
Registered: Nov 2003
Location: Mt Dufferin
Distribution: Slackware 12.2
Posts: 73

Rep: Reputation: 15
Worked perfectly . . .
Have a wheely good day!
Thanks.
 
Old 12-04-2003, 11:08 AM   #7
burnpile
Member
 
Registered: Dec 2003
Location: Almost Heaven, West Virginia
Distribution: Slackware
Posts: 327

Rep: Reputation: 30
Great! glad I was able to help
 
Old 03-08-2004, 12:22 PM   #8
buttersoft
Member
 
Registered: Aug 2003
Distribution: Slackware
Posts: 178

Rep: Reputation: 30
Thanks for this tip. Fixed my one remaining small thing with Slackware and my Logitech Mini Wheel Mouse.
 
Old 04-11-2004, 09:04 PM   #9
seedsca
LQ Newbie
 
Registered: Mar 2004
Location: Los Angeles
Distribution: Kubuntu 16.10
Posts: 24

Rep: Reputation: 0
Hello. I have the similar problem but putting

Option "Protocol" "IMPS/2"
Option "Protocol" "ZAxisMapping" "6 7"

did not work.

Cordless MouseMan Wheel usb with ps/2 adapter on.
Slackware 9.1

The middle and thumb button work but the wheel scrolls horisontally only, not vertically....

could not find anything on google or the man pages for XF86Config.
 
Old 04-11-2004, 10:39 PM   #10
spuppett
Member
 
Registered: Feb 2003
Posts: 47

Rep: Reputation: 15
Just wanted to let you guys know that you made my day with this thread! I was having a hell of a time, but you help out a ton.
 
  


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
logitech optical mouse. scroll wheel not working greenbox Linux - Hardware 15 12-28-2005 10:55 AM
Logitech Optical USB mouse wheel not working in games Xandor Linux - Hardware 2 11-27-2005 09:37 PM
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
Logitech Optical Wireless wheel usb mouse 1kyle Linux - Hardware 0 03-07-2004 05:14 PM
Issues with Logitech USB Wheel Mouse in X ziekke Linux - Hardware 2 03-26-2003 04:54 PM

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

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