You can try this little trick:
Type `ls -la /dev/mouse` in the terminal to find where you mouse is, the output I get is:
Code:
lrwxrwxrwx 1 root root 15 Sep 16 15:54 /dev/mouse -> /dev/input/mice
Which means that the mouse is at /dev/input/mice
Now, go into your xorg.conf and put this in your mouse section:
Code:
Option "Device" "/dev/input/mice"
Replacing the location with your own. Make sure your mouse is working at the time, or else it might not report a location. The total mouse section might look like this:
Code:
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Device" "/dev/input/mice"
Option "Protocol" "ExplorerPS/2"
Option "Device" "/dev/input/mice"
Option "Buttons" "9"
Option "ZAxisMapping" "6 7"
Option "Emulate3Buttons" "false"
Also, your Protocol might be incorrect. By the way, don't go changing your section to match mine, that could turn out bad. The identifier may be different (mouse1, for example).
HTH