• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Linux - Help me before I go insane

djs1w

Senior member
I installed Redhat 7.2 this morning because I wanna play with it a bit. All went well, except the mouse wheel doesn't work. I never knew how much I relied on this thing and it's driving me nuts having to manually move the vertical scroll bar. I'm assuming I need to pick a different driver but have no clue as to where or if I even have the right driver on the
machine.

Any help would greatly appreciated.

/starts to pull hair out
 
which program do U want to use it in? for example, in netscape go into the preferences/advanced/mouse wheel.

not all programs will use it
 
yeah netscape is primarily what I'm looking for. However, I didn't see that option listed under preferences-->advanced-->wheel. Using Communicator 4.78.
 
well this is what I did to get it to work in Netscape:

Follow the directions on this webpage:

http://kalamazoolinux.org/tech/ns-wheel.html

and then run /usr/sbin/mouseconfig and change your mousetype to Intellimouse even though you might not have an Intellimouse. Reboot and it started scrolling for me, woot! 🙂
 
In addition, to get it working in all other apps, open your XF86Config file in a text editor, look for Section "InputDevice" and add Option "ZAxisMapping" "4 5" somewhere before the next EndSection.
 
Oops. Didn't read the whole thing. 😛 Yes, I'm using a generic mouse with the Intelimouse setting, and not having a single problem.
 


<< In addition, to get it working in all other apps, open your XF86Config file in a text editor, look for Section "InputDevice" and add Option "ZAxisMapping" "4 5" somewhere before the next EndSection. >>



you also want to add:
Option "Buttons" "5"

and make sure your protocol is set to IMPS/2
 
yeah mine looks like this:

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/psaux"
Option "Protocol" "ps/2"
Option "Emulate3Buttons" "false"
Option "ZAxisMapping" "4 5"
EndSection

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

my mouse wheel has worked just fine from the start.
 
Back
Top