• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

Touchpad und USB-Maus gleichzeitig

calutateo

Member
Hallo,

SuSE 9.0
FujitsuSiemens Amilo A - CY26
Maeuse:
Touchpad + RF Optical Vip Mouse (http://www.ngslurbe.com/html/publica/detalleproducto.asp?id=64&ids=8)

Beide Maeuse funktionieren - aber nicht gleichzeitig.
Eintraege aus XF86Config _JEWEILS_ mit Yast2 konfiguriert:


#USB-Maus
Section "InputDevice"
Driver "mouse"
Identifier "Mouse[1]"
Option "Device" "/dev/input/mice"
Option "InputFashion" "Mouse"
Option "Name" "USB-Mouse;PS/2"
Option "Protocol" "PS/2"
EndSection

#Touchpad
Section "InputDevice"
Driver "mouse"
Identifier "Mouse[1]"
Option "Device" "/dev/mouse"
Option "Emulate3Buttons" "on"
Option "Name" "Autodetection"
Option "Protocol" "PS/2"
Option "Vendor" "Sysp"
Option "ZAxisMapping" "4 5"
EndSection

Ich habe dann beide <<Section "InputDevice">> Eintraege in die XF86Config kopiert und eine weitere "InputDevice"-Zeile im "ServerLayout" eingetragen (USB-Maus auf "Mouse[2]" geaendert):

Section "ServerLayout"
Identifier "Layout[all]"
InputDevice "Keyboard[0]" "CoreKeyboard"
InputDevice "Mouse[1]" "CorePointer"
InputDevice "Mouse[2]" "CorePointer
Option "Clone" "off"
Option "Xinerama" "off"
Screen "Screen[0]"
EndSection

Funktioniert nicht.
Hmmmmmmm...?
Carsten
 
A

Anonymous

Gast
ist:
calutateo schrieb:
#USB-Maus
Section "InputDevice"
Driver "mouse"
Identifier "Mouse[1]"
Option "Device" "/dev/input/mice"
Option "InputFashion" "Mouse"
Option "Name" "USB-Mouse;PS/2"
Option "Protocol" "PS/2"
EndSection

#Touchpad
Section "InputDevice"
Driver "mouse"
Identifier "Mouse[1]"
Option "Device" "/dev/mouse"
Option "Emulate3Buttons" "on"
Option "Name" "Autodetection"
Option "Protocol" "PS/2"
Option "Vendor" "Sysp"
Option "ZAxisMapping" "4 5"
EndSection

Section "ServerLayout"
Identifier "Layout[all]"
InputDevice "Keyboard[0]" "CoreKeyboard"
InputDevice "Mouse[1]" "CorePointer"
InputDevice "Mouse[2]" "CorePointer
Option "Clone" "off"
Option "Xinerama" "off"
Screen "Screen[0]"
EndSection

must be:
Code:
#USB-Maus
Section "InputDevice"
  Driver       "mouse"
  Identifier   "Mouse[1]"
  Option       "Device" "/dev/input/mice"
  Option       "InputFashion" "Mouse"
  Option       "Name" "USB-Mouse;PS/2"
  Option       "Protocol" "PS/2"
EndSection

#Touchpad
Section "InputDevice"
  Driver       "mouse"
  Identifier   "Mouse[2]"                      # Änderung!
  Option       "Device" "/dev/mouse"
  Option       "Emulate3Buttons" "on"
  Option       "Name" "Autodetection"
  Option       "Protocol" "PS/2"
  Option       "Vendor" "Sysp"
  Option       "ZAxisMapping" "4 5"
EndSection

Section "ServerLayout"
  Identifier   "Layout[all]"
  InputDevice  "Keyboard[0]" "CoreKeyboard"
  InputDevice  "Mouse[1]" "CorePointer"
  InputDevice  "Mouse[2]"                               # Änderung !
  Option       "Clone" "off"
  Option       "Xinerama" "off"
  Screen       "Screen[0]"
EndSection

Erkläung:
1. Es darf nur eine Mouse[1] geben, daher die nummerierung, ansonsten weiß der X nicht welche er nehmen soll
2. Es darf nur EINEN CorePointer geben

die anderen Optionen hab ich nicht durchgeschaut, mit den beiden Änderungen sollte es klappen
 
OP
calutateo

calutateo

Member
Vielen Dank.
Die Aenderung 1 war bereits implementiert. Die beiden Listings waren einzeln zu lesen.
Das mit dem Corepointer wusste ich nicht.
Nochmal danke.
Carsten
 
Oben