Missing mouse pointer in Debian Sid/Ubuntu Hardy

Discussions about using Linux guests in VirtualBox.
Post Reply
donaldpk
Posts: 1
Joined: 3. Dec 2007, 17:36

Missing mouse pointer in Debian Sid/Ubuntu Hardy

Post by donaldpk »

Problem:

Virtualbox installed on Ubuntu 7.10 host.
Guest is either Debian Sid or Ubuntu Hardy. Guest additions have been installed and reboot.

Mouse pointer missing on the screen. The mouse integration (>>) arrow is off.

Solution:

Check /etc/X11/xorg.conf contains the following lines. No idea why it's missing.

Code: Select all

Section "ServerLayout"
        Identifier      "Default Layout"
        Screen          "Default Screen"
        InputDevice     "Generic Keyboard"
        InputDevice     "Configured Mouse"
EndSection
Note that InputDevice and Screen options need to match the options in your own setup.
frank
Oracle Corporation
Posts: 3362
Joined: 7. Jun 2007, 09:11
Primary OS: Debian Sid
VBox Version: PUEL
Guest OSses: Linux, Windows
Location: Dresden, Germany
Contact:

Post by frank »

Chugmonkey
Posts: 3
Joined: 23. Mar 2008, 18:26
Location: Leeds, UK

Very pleased!

Post by Chugmonkey »

Hi guys,

Thanks so much for that tip - I was getting frustrated as a new Ubuntu user

For those who want to know how to edit the file:
sudo gedit /etc/X11/xorg.conf

enter password

Find the line with Driver as follows:

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"
EndSection

Change:
Driver "mouse"

to:

Driver "vboxmouse"

Save the file, and reset the system with Ctrl + Alt +Bspace

What a relief!

Chug
Post Reply