PDA

View Full Version : Scrollwheel



pulsar
05-14-2004, 10:31 AM
Hi everyone,

Being relatively new in linuxworld I did a knoppix3.4 install. on Hdisk. But I have some little problems though. One is that my mouse scrollwheel is not working when using the 2.6 kernel, while it does function using the 2.4 kernel. Someone having any ideas on this?

Thanks!

mzilikazi
05-14-2004, 05:09 PM
You probably just need to edit /etc/X11/XF86Config-4. Mine (a USB mouse) looks like so:

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
Option "SendCoreEvents" "true"
EndSection

My guess is that you don't have /dev/input/mice

pulsar
05-14-2004, 09:41 PM
Thanks!