Возможно пытаешься использовать неправильный драйвер. Например usbmouse, который, как легко догадаться нормально с мышью не работает. Вместо него нужен input и mousedev.
У меня логитеховская мышь - МХ300 - работает на ура - лучше, чем обычная шариковая. Опозналась и настроилась без проблем под всеми пробованными мной дистрибами - FreeBSD 5.1, Mdk 9.1, ASP 9, ALT 2.2, ASP 7.3, SuSE 8.2. А у тебя дистриб какой и мыша какая? Ессно у мя работает через УСБ - переходник при переезде я посеял... :(
Logitech оптическая, отлично работает.
...src/linux> /usr/sbin/lsusb
Bus 002 Device 001: ID 0000:0000
Bus 001 Device 001: ID 0000:0000
Bus 001 Device 002: ID 046d:c00e Logitech, Inc. Optical Mouse
Cобери ядро с
CONFIG_INPUT
Say Y here if you want to enable any of the following options for USB
human Interface Device (HID) support.
CONFIG_INPUT_MOUSEDEV
Say Y here if you want your USB HID mouse
CONFIG_USB
Say Y here if your computer has a USB port and you want to use USB
CONFIG_USB_DEVICEFS
поможет, если что...
CONFIG_USB_UHCI
ну или тот контроллер, что у тебя есть...
CONFIG_USB_HID
Say Y here if you want full HID support to connect keyboards,mice,
joysticks, graphic tablets, or any other HID based devices to your
computer via USB.
CONFIG_USB_HIDINPUT
Say Y here if you want to use a USB keyboard, mouse or joystick, or
any other HID input device
монтируешь usbfs...
~> cat /etc/fstab | grep usb
none /proc/bus/usb usbfs defaults 0 0
потом настроишь те программы, которые этого требуют...
~> cat /etc/gpm.conf | egrep -v "^#"
device=/dev/input/mice
responsiveness=
repeat_type=
type=autops2
append=""
sample_rate=
~> cat /etc/X11/XF86Config-4 | grep -C 5 Pointer
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
EndSection
и все.