This blog is NOFOLLOW Free!

You're browsing: Home » Hardware, Linux » Blog article: Microsoft IntelliMouse Explorer in Linux

Microsoft IntelliMouse Explorer in Linux

Installing Microsoft IntelliMouse Explorer

Here is how I configured my MS Optical Explorer mouse:

- first, modify the xorg.conf file
Code:

Section "InputDevice"
Identifier "USB Mouse"
Driver "mouse"
Option "Protocol" "ExplorerPS/2"
Option "Device" "/dev/input/mice"
Option "Buttons" "7"
Option "ZAxisMapping" "6 7"
EndSection

- then you have to create file /etc/X11/xinit/xinitrc.d/mouse with the following content:
Code:

#!/bin/sh

# /etc/X11/xinit/xinitrc.d/mouse
# Required for the configuration of a 5-button mouse

xmodmap -e "pointer = 1 2 3 6 7 4 5"

This file correctly configures the buttons. You have to set this file executable:
Code:

chmod +x /etc/X11/xinit/xinitrc.d/mouse

And that should work. You can try Firefox, which manages side buttons natively.

if something is wrong try this :

if so, modify the /etc/X11/xinit/xinitrc.d/mouse file:
Code:

xmodmap -e "pointer = 1 2 3 4 5 6 7"

Then restart Xorg…

It works for me at my old Fedora 2…..

This text is from www.fedoraforum.org.
I just show it on my page because the forum is so complex.

If you enjoyed this post, make sure you subscribe to my RSS feed!

Related Entries

Subscribe

Keep updated with future posts by subscribing to SilentBits through RSS or email.

3 Responses to “Microsoft IntelliMouse Explorer in Linux”


  1. 1 Judas (1 comments) Mar 9th, 2007 at 4:16 am

    Thanks for the article, it helped me create a config for my (alleged) 11 button mouse…

    For the Intellimouse Explorer 4.0a, the following configs work:

    for xorg.conf

    Section “InputDevice”
    Driver “mouse”
    Identifier “Mouse[1]”
    Option “Buttons” “5″
    Option “Device” “/dev/input/mice”
    Option “Name” “ImExPS/2 Generic Explorer Mouse”
    Option “Protocol” “explorerps/2″
    Option “Vendor” “Sysp”
    Option “ZAxisMapping” “4 5″
    Option “ButtonMapping” “1 2 3 6 7″
    EndSection

    and for mouse.sh

    xmodmap -e “pointer = 1 2 3 9 8 6 7 5 4 10 11″

  2. 2 Peter (248 comments) Mar 9th, 2007 at 3:44 pm

    I am very happy that this helps !

    Thanks for info, maybe it will also help someone.

  3. 3 David (3 comments) May 1st, 2007 at 4:43 pm

    Thanks for that addendum, Judas!

Subscribe to Comments

Feed for this Entry RSS Feed-Comments

Leave a Reply