Hallo!
Ich habe auf meinem T60p WinXP laufen mit Ubuntu in einer VirtualBox. Das Problem ist, das trotz installierten Guest Additions meine Maus nicht richtig funktioniert: Vom Wechsel Ubuntu => WinXP muss ich meine Host-Taste drücken, damit meine Maus "frei" wird. Außerdem tritt regelmäßig der Effekt auf, dass ich meine Maus nur in einem eingeschränkten Bereich bewegen kann. Und Scrollen mit der "mittleren Maustaste" des Notebooks ist überhaupt nicht möglich.
Ich habe schon ein wenig an der xorg.conf rumgespielt, doch bisher habe ich noch nichts ändern können. Habt ihr irgendwelche Ideen?
Danke!
Ich habe auf meinem T60p WinXP laufen mit Ubuntu in einer VirtualBox. Das Problem ist, das trotz installierten Guest Additions meine Maus nicht richtig funktioniert: Vom Wechsel Ubuntu => WinXP muss ich meine Host-Taste drücken, damit meine Maus "frei" wird. Außerdem tritt regelmäßig der Effekt auf, dass ich meine Maus nur in einem eingeschränkten Bereich bewegen kann. Und Scrollen mit der "mittleren Maustaste" des Notebooks ist überhaupt nicht möglich.
Ich habe schon ein wenig an der xorg.conf rumgespielt, doch bisher habe ich noch nichts ändern können. Habt ihr irgendwelche Ideen?
Danke!
Code:
Section "Files"
FontPath "unix/:7100" # local font server
# if the local font server has problems, we can fall back on these
FontPath "/usr/share/fonts/X11/misc/"
FontPath "/usr/share/fonts/X11/TTF/"
FontPath "/usr/share/fonts/X11/OTF"
FontPath "/usr/share/fonts/X11/Type1/"
FontPath "/usr/share/fonts/X11/CID/"
FontPath "/usr/share/fonts/X11/100dpi/"
FontPath "/usr/share/fonts/X11/75dpi/"
EndSection
Section "Module"
Load "bitmap"
Load "dbe"
Load "ddc"
Load "dri"
Load "evdev"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "record"
Load "type1"
Load "vbe"
EndSection
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "keyboard"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "de"
Option "XkbVariant" "nodeadkeys"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "true"
Option "Emulate3TimeOut" "50"
Option "EmulateWheel" "true"
Option "EmulateWheelTimeOut" "200"
Option "EmulateWheelButton" "2"
Option "YAxisMapping" "4 5"
Option "XAxisMapping" "6 7"
EndSection
Section "Device"
Identifier "Configured Video Device"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Generic Mouse"
EndSection
Section "DRI"
Mode 0666
EndSection