Linux - Help me before I go insane

djs1w

Senior member
Apr 17, 2001
282
0
0
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
 

Abzstrak

Platinum Member
Mar 11, 2000
2,450
0
0
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
 

djs1w

Senior member
Apr 17, 2001
282
0
0
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.
 

djs1w

Senior member
Apr 17, 2001
282
0
0
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! :)
 

BlackOmen

Senior member
Aug 23, 2001
526
0
0
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.
 

AkumaBao

Golden Member
Aug 14, 2001
1,438
0
0
Oops. Didn't read the whole thing. :p Yes, I'm using a generic mouse with the Intelimouse setting, and not having a single problem.
 

MGMorden

Diamond Member
Jul 4, 2000
3,348
0
76


<< 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
 

Barnaby W. Füi

Elite Member
Aug 14, 2001
12,343
0
0
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.