scroll wheel does not work

Hi All,

I tried a number of the tricks described here but a simple “Sweex” 3 (or 5) button mouse does not process any input from the mousewheel. It may seem a trivial problem but it complete tanks my productivity. If any body has a suggestion I would be very happy.

  1. the mouse worked in Suse 10.3
  2. it does not work in 11
  3. it is a optical three button Sweex mouse with a mouse wheel on top (so I guess that makes it a 5 button mouse)

The settings in xorg.conf are:

Section “InputDevice”
Driver “mouse”
Identifier “Mouse[1]”
Option “AutoSoft” “on”
Option “Device” “/dev/input/mice”
Option “Name” “Generic”
Option “Protocol” “Auto”
Option “Vendor” “Auto”
Option “ZAxisMapping” “4 5”
EndSection

currenty I do not have a .Xmodmap (I tried a few but nothing). If you have any idea or can point me towards a solution I would very much appreciate it.

Thanks,
Aad

do you happen to have another mouse with a scroll wheel to try?
Failing that try using another mouse type in the setup, Logitech or M$, or something with wheel and see if that takes care of the problem. Also if you happen to have another computer handy try it on there. it might be that the wheel has failed for some reason…

Uh, all of that was checked. Other mouse was checked. Other computer was checked. I tried several different drivers, etc.

Fixed. You had this in /etc/X11/xorg.conf:

Section "InputDevice"
  Driver       "mouse"
  Identifier   "Mouse[1]"
  Option       "AutoSoft" "on"
  Option       "Device" "/dev/input/mice"
  Option       "Name" "Generic"
  Option       "Protocol" "Auto"
  Option       "Vendor" "Auto"
  Option       "ZAxisMapping" "4 5"
EndSection

I changed this to:

Section "InputDevice"
  Driver       "mouse"
  Identifier   "Mouse[1]"
  Option       "Device" "/dev/input/mice"
  Option       "Name" "ImPS/2 Generic Wheel Mouse"
  Option       "Protocol" "explorerps/2"
  Option       "Vendor" "Sysp"
  Option       "ZAxisMapping" "4 5"
EndSection

(as per Problem with mouse & ATI drivers - openSUSE Forums).

Rebooted your machine, scrollwheel works.

(In case you are wondering: yes, I am a colleague of AadNales).