PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : 2 Mäuse unter X?


Gourada
24.10.01, 13:32
Hallo !
Ich möchte eine Maus und ein Zeichentablett (Genius) unter X einsetzen. Geht das ?

mfg Peter

geronet
24.10.01, 17:25
Ja, sieht gut aus ;)

Ich hab drei(!) Mäuse laufen (zwei logitech und eine Fernbedienung mit lirc),
eine PS/2 mit Wheel am ps/2 port

und eine Funk-maus am seriellen port /dev/ttyS1.

in der /etc/X11/XF86Config-4 sowas eintragen:


---schnipp---
Section "ServerLayout"
Identifier "XFree86 Configured"
Screen 0 "Acer View 99c Primary" 0 0
Screen 1 "Acer View 99c Secondary" 0 0
InputDevice "Logitech Wheel Mouse" "CorePointer"
InputDevice "Cordless Wheel Mouse" "SendCoreEvents"
InputDevice "Remote Mouse" "SendCoreEvents"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
---schnapp---

Und dann drunter:

---schnipp---
Section "InputDevice"
Identifier "Logitech Wheel Mouse"
Driver "mouse"
Option "Device" "/dev/mouse"
Option "Protocol" "IMPS/2"
Option "Emulate3Buttons" "off"
Option "ZAxisMapping" "4 5"
Option "BaudRate" "9600"
Option "SampleRate" "150"
Option "Resolution" "600"
Option "CorePointer"
EndSection

Section "InputDevice"
Identifier "Cordless Wheel Mouse"
Driver "mouse"
Option "Device" "/dev/ttyS1"
Option "Protocol" "Auto"
Option "Emulate3Buttons" "off"
Option "ZAxisMapping" "4 5"
Option "BaudRate" "9600"
Option "SampleRate" "150"
Option "Resolution" "600"
EndSection

Section "InputDevice"
Identifier "Remote Mouse"
Driver "mouse"
Option "Device" "/dev/lircm"
Option "Protocol" "IMPS/2"
Option "Emulate3Buttons" "off"
Option "DeviceName" "Remote"
Option "AlwaysCore"
Option "Buttons" "5"
Option "ZAxisMapping" "4 5"
# Option "BaudRate" "9600"
# Option "SampleRate" "150"
# Option "Resolution" "600"
EndSection

---schnapp---