• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Trying to get Linux working with my USB Mouse (HELP)

Linux23

Lifer
i previously had a PS/2 wireless mouse - but then i upgraded to a Microsoft Intellipoint Explorer Wireless USB mouse and now i can't get my mouse to work. is there a command i can run in order to reconfigure my mouse defaults to use a standard USB mouse under Linux?

most important question, is it possible to use a MS USB Mouse in Linux?


{okay guys, i know my name is Linux23 but no puns please}
 
Yes, it is possible.

Does your BIOS have a USB legacy mouse option? Do you have it built into to the kernel?

What kernel are you using?
 
i have kernel version 2.4.xx (i'm at work now)

i do have an option for USB legacy mouse in my BIOS - if i enable that would my USB mouse work?

not sure if it is built into the kernel or not...
 
Sure... I use a usb mouse (and it's optical too!). If you got usb support compiled into your kernel (should if you are using a distro's stock kernel) then all you need to do is to edit your /etc/X11/XF86Config file.

were the mouse stuff is change things around so they look like this:


Section "InputDevice"

# Identifier and driver

Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/mouse"
Option "ZAxisMapping" "4 5" <---------- for the mouse wheel....
Option "Buttons" "5"


for more details go here...
 
Back
Top