Would you recommend the product? yes | Price you paid?: $16.00 | Rating: 8
|
Kernel (uname -r):
|
2.6.6-kanotix-2
|
|
Distribution:
|
Kanotix modified Debian Sid
|
Took a little work to get this one running, atleast with the side buttons functional. If protocol is set to IMPS/2 or auto, or anything like that, the side buttons were rendered useless (but the main 2 and scroll worked). In order to get it fully functional, I had to load it up as a Intellimouse Explorer (since essentially they are pretty much the same), with 7 buttons (4, plus middle click, and two for up and down on the scroll wheel). Next up I set the ZAxisMapping to be 6 and 7, so I could have my buttons listed in a logical order (Left is 1, middle is 2, right is 3, left side is 4, left right is 5, then the remaining two for scroll). Here's a copy of what I have in XF86Config-4
Section "InputDevice"
Identifier "PS/2 Mouse"
Driver "mouse"
Option "Protocol" "ExplorerPS/2"
Option "ZAxisMapping" "6 7"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons" "true"
Option "Emulate3Timeout" "70"
Option "SendCoreEvents" "true"
Option "Buttons" "7"
EndSection
Next up, I mapped the buttons a bit differently (I have this in a script on loadup)
xmodmap -e "pointer = 1 2 3 6 7 4 5"
imwheel -k -b "67"
xmodmap remaps the buttons, because on default linux has the mouse wheel be 4 and 5 (you can probably set it that way in XF86config-4, so to skip part of this, but its just how I did it).
|