Notebook mit USB-Maus

D

Dirk

Mitglied
Moin!
Seit kurzen besitze ich ein Notebook und habe mir dazu eine USB-Wheelmouse gekauft. Erstaunlicherweise erkennt der XServer diese sofort und ich kann sie parallel zum Touchpad verwenden. Ich habe nicht einmal etwas an der XF86Config verändert.
Doch leider wird wohl das falsche Protokoll verwendet, so dass das Mausrad nicht funktioniert.
Hier die wichtigen Passagen von dmesg:

drivers/usb/core/usb.c: registered new driver hid
drivers/usb/input/hid-core.c: v2.0:USB HID core driver
mice: PS/2 mouse device common for all mice
i8042.c: Detected active multiplexing controller, rev 1.1.
serio: i8042 AUX0 port at 0x60,0x64 irq 12
serio: i8042 AUX1 port at 0x60,0x64 irq 12
serio: i8042 AUX2 port at 0x60,0x64 irq 12
Synaptics Touchpad, model: 1
Firmware: 5.1
180 degree mounted touchpad
Sensor: 15
new absolute packet format
Touchpad has extended capability bits
-> four buttons
-> multifinger detection
-> palm detection
input: SynPS/2 Synaptics TouchPad on isa0060/serio3
usb 2-2: new low speed USB device using address 2
input: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:10.1-2
Wie kann ich hier dem XServer auf die Sprünge helfen, damit er das IMPS/2 Protokoll verwendet? Achja, ich benutze Gentoo mit Kernel 2.6.4 und XFree86 Version 4.3.0.1.

Danke im voraus!

Dirk
 
/usr/X11R6/bin/xf86cfg <-- für alle gui freunde
da kannst du als root alles einstellen und aus einer liste auswählen
 
Also hiermit funktioniert an meinem Thinkpad auch beides :

Code:
Section "InputDevice"

# Identifier and driver

    Identifier  "Mouse1"
    Driver "mouse"
    Option "Protocol"   "ImPS/2"
    Option "ZAxisMapping"   "4 5"
    Option "Device"     "/dev/mouse"

# When using XQUEUE, comment out the above two lines, and uncomment
# the following line.

#    Option "Protocol"   "Xqueue"

# Baudrate and SampleRate are only for some Logitech mice. In
# almost every case these lines should be omitted.

#    Option "BaudRate"   "9600"
#    Option "SampleRate" "150"

# Emulate3Buttons is an option for 2-button Microsoft mice
# Emulate3Timeout is the timeout in milliseconds (default is 50ms)

#    Option "Emulate3Buttons"
#    Option "Emulate3Timeout"    "50"

# ChordMiddle is an option for some 3-button Logitech mice

#    Option "ChordMiddle"

EndSection
 

Ähnliche Themen

Gnome Classic Desktop: Home-Inhalt Icons ausblenden

Wo sind die Geräte?

Displayport + externer Monitor zeigt bei startx nichts erst bei DVI

Modulfehler?

Ubuntu X / dbus problem

Zurück
Oben