ACHTUNG: Obsolet in Ubuntu 8.10 (Xorg 1.5), da hier input-hotplug verwendet wird. Rekonfiguration stattdessen via

$ dpkg-reconfigure console-setup

durchführen und dann HAL und Xorg neustarten.

Unter X ist es problemlos möglich, den Mauscursor von verschiedenen Eingabegeräten steuern zu lassen:

Hierzu in der/etc/X11/xorg.conf:

Section "ServerLayout"
...
Screen "..."
...
InputDevice "Configured Mouse"
InputDevice "USB Mouse"
InputDevice "Generic Mouse"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/psaux"
Option "Protocol" "auto"
...
EndSection

Section "InputDevice"
Identifier "USB Mouse"
Driver "mouse"
Option "SendCoreEvents" "true"
Option "Device" "/dev/input/mice"
Option "Protocol" "auto"
...
EndSection

Section "InputDevice"
Identifier "Generic Mouse"
Driver "mouse"
Option "SendCoreEvents" "true"
Option "Device" "/dev/ttyS0"
Option "Protocol" "auto"
...
EndSection


attachments

imageappend Append an Image
>