Hallo,
ich weiß nicht wie ich dieses Problem lösen kann;
mein xorg.conf
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen-LCD" 0 0
InputDevice "USBMouse"
InputDevice "Laptop-Keyboard"
InputDevice "AcerMultimedia"
InputDevice "Synaptics Touchpad"
EndSection
Section "Files"
RgbPath "/usr/share/X11/rgb"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/misc"
FontPath "/usr/share/fonts/100dpi:unscaled"
FontPath "/usr/share/fonts/75dpi:unscaled"
FontPath "/usr/share/fonts/TTF"
FontPath "/usr/share/fonts/Type1"
EndSection
Section "Module"
Load "dri"
Load "record"
Load "glx"
Load "extmod"
Load "xtrap"
Load "dbe"
Load "freetype"
EndSection
Section "InputDevice"
Identifier "Laptop-Keyboard"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "de"
# Option "XkbOptions" "lv3:ralt_switch"
EndSection
Section "InputDevice"
Identifier "USBMouse"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "CorePointer"
Option "ZAxisMapping" "4 5"
# Option "ButtonMapping" "1 2 3 6 7"
EndSection
Section "InputDevice"
Identifier "AcerMultimedia"
Driver "evdev"
Option "Protocol" "event"
Option "Device" "/dev/input/event9"
Option "SendCoreEvents" "true"
EndSection
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "Protocol" "event"
Option "SendCoreEvents" "true"
Option "Device" "/dev/input/event10"
Option "MinSpeed" "0.1"
Option "MaxSpeed" "0.6"
Option "MaxTapTime" "0"
Option "MaxTapMove" "0"
Option "HorizScrollDelta" "0"
Option "SHMConfig" "on"
EndSection
Section "Monitor"
Identifier "LCD"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
EndSection
Section "Device"
Identifier "NVIDIA"
Driver "nvidia"
VendorName "nVidia Corporation"
BoardName "GeForce 8600M GT"
BusID "PCI:1:0:0"
Option "RenderAccel" "True"
# Option "AddARGBGLXVisuals" "True"
Option "DamageEvents" "True"
Option "TripleBuffer" "True"
Option "UseEvents" "False"
# Option "AllowIndirectPixmaps" "True"
# Option "DisableGLXRootClipping" "True"
# Option "BackingStore" "True"
Option "InitialPixmapPlacement" "2"
Option "Coolbits" "1" #aktiviert die Overlocking Funktion in nvidia-settings
Option "DynamicTwinView" "False"
EndSection
Section "Screen"
Identifier "Screen-LCD"
Device "NVIDIA"
Monitor "LCD"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "nvidia-auto-select"
EndSubSection
EndSection
Section "DRI"
Group "users"
Mode 0660
EndSection
für "AcerMultimedia" ist event9:
"/dev/input/event9"
und für "Synaptics Touchpad" ist
"/dev/input/event10"
und da ich manchmal USBMaus benutze.
"USBMouse"
"/dev/input/mice"
events habe ich mit:
"/dev/input/event10"
..herausgefunden.
wenn ich jetzt USB Maus anschließe und dann Laptop neu starte, dann funktioniert synaptics nicht mehr...
das liegt daran das die events nicht mehr passen.
auch ohne USBMaus änert sich events.
heute habe ich zb. kein USBMaus benutzt und was zeigt mir;
cat "/dev/input/event10"
....
....
....
I: Bus=0011 Vendor=0002 Product=0007 Version=01b1
N: Name="SynPS/2 Synaptics TouchPad"
P: Phys=isa0060/serio3/input0
S: Sysfs=/devices/platform/i8042/serio3/input/input8
U: Uniq=
H: Handlers=mouse1 event8
B: EV=b
B: KEY=6420 7001f 0 0 0 0
B: ABS=11000003
I: Bus=0011 Vendor=0002 Product=0007 Version=81b1
N: Name="SynPS/2 Synaptics TouchPad"
P: Phys=isa0060/serio4/input0
S: Sysfs=/devices/platform/i8042/serio4/input/input9
U: Uniq=
H: Handlers=mouse2 event9
B: EV=b
B: KEY=6420 7000f 0 0 0 0
B: ABS=11000003
....
....
....
event8 ist jetzt "AcerMultimedia" 🙁
und event9 ist "Synaptics Touchpad" 🙁
ich muss jedes mal xorg.conf manuel ändern 🙁
wie kann ich das problem lösen?
Gruss,
Lee