Sorry für die späte Lösung!
Also das Problem ist die Umstellung von HAL auf udev. Ist aber mit wenigen
Handgriffen erledigt.
Also:
1. In der xorg.conf unter Section "ServerLayout" folgende Zeilen löschen:
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "PS/2 Mouse" "CorePointer"
Alle Section "InputDevice" Einträge löschen
Section "InputDevice"
Identifier "USB Mouse"
Driver "evdev"
Option "Device" "/dev/input/mice"
Option "SendCoreEvents" "true"
Option "Protocol" "auto"
Option "ZAxisMapping" "4 5"
Option "Buttons" "5"
EndSection
...
...
...
und ersetzen durch folgende Einträge:
Section "InputClass"
Identifier "keyboard-all"
Driver "evdev"
Option "XkbLayout" "de"
Option "XkbVariant" ",qwertz"
Option "XkbOptions" "grp:alt_shift_toggle,grp:switch,compose:rwin,terminate:ctrl_alt_bksp"
MatchIsKeyboard "on"
EndSection
Section "InputClass"
Identifier "mouse-all"
Driver "evdev"
MatchIsPointer "on"
EndSection
2. Terminal starten und folgendes als root ausführen:
cp -f * /etc/udev/rules.d/
Neustart ... sollte laufen :)
Gruß Jörn