|
发表于 2002-12-11 17:15:28
|
显示全部楼层
I did a google search.
from: http://panuganty.tripod.com/debiantips/mouse.htm
How do I get my USB mouse work?
Preferably, use the 2.4.x kernel. You first need to configure your kernel for the USB mouse support. Turn on the 'USB Human Interface Device (HID)" in the USB support and 'Mouse Support" in the Input Core support. Make sure you do NOT turn on the HIDBP mouse support. The HIDBP (boot protocol) way is intended for embedded systems with resource constraints and is inferior for normal desktop systems. Do "insmod input; insmod usbcore; insmod usb-uhci; insmod hid"
Look for bootup messages (dmesg or /proc/bus/usb/devices) for see if the USB mouse got recognised. Do 'mkdir /dev/input' and 'mknod /dev/input/mice c 13 63'. The directory is to later allow addition of multiple USB input devices (mice, touch pad,...)
How do I configure USB mouse in XFree86-4.0?
Add these lines in /etc/X11/XF86Config-4
Section "InputDevice"
Identifier "Intelli Mouse"
Driver "mouse"
Option "AlwaysCore"
Option "CorePointer"
Option "rotocol" "IMPS/2"
Option "Device" "/dev/input/mice"
EndSection |
|