I had ubuntu for a while, and one thing that really bugged me was that I couldn't seem to get my USB Intellimouse to use it's side buttons for navigation. I searched these forums for help, and indeed I found some. However, these solutions went through more hassle than needed (ie imwheel...why?). There was no quick and easy way to make this simple fix. Through trial and error, I found out a very simple way to get these navigation buttons working like they should in applications like firefox.
First sudo to root:
Then, open your xorg.conf, which, in most cases is in /etc/X11/:
(Use whatever editor you like; vi is a personal preference. replace 'vi' with 'gedit' for a presumably more familar feel to you newbies)
Code:
vi /etc/X11/xorg.conf
Find the section labeled
Code:
Section "InputDevice"
Include, at least, the following lines in that section. Change whatever needed. You dont need to insert the comments:
Code:
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ExplorerPS/2" #new explorer protocol...even works with usb mice
Option "Buttons" "7" #tells X11 the number of buttons on the mouse
Option "ZAxisMapping" "4 5" #tells X11 which buttons to use for scrolling, 4 is up, 5 is down (i think)
EndSection
I would also recommend commenting the Emulate3DButtons line. Its a feature for old mice, which Intellimouse is not:
Code:
# Option "Emulate3Buttons" "true"
Then restart Gnome (assuming that's your desktop. sorry KDEers):
Code:
/etc/init.d/gdm restart
And viola! Now your sidebuttons work!!! Test it out in firefox. That was simple and easy, wasn't it?
Enjoy!
Post any questions, and with prayer, you will get a response. However, it probably won't be from me...I don't really know Linux too well.
Bookmarks