0

I'm running Windows7 x64, Virtualbox 5.0.16 and just installed Ubuntu 14.04.

Ubuntu starts fine, but gives a very low resolution (e.g. 640x460).

I tried running sudo apt-get install virtualbox-guest-dkms virtualbox-guest-utils virtualbox-guest-x11

but this gives me the error

Unable to locate package virtualbox-guest-x11: depends on xorg-video abi-15 depends on xserver-xorg-core etc.etc.

I'm stuck here. Any suggestions (using newbie language?)

Thanks!

Matthias
  • 101
  • 5

1 Answers1

1

As first you need to download the VirtualBox 5.0.17 Guest Additions installer image from here. (P.S.: make sure you download one for Linux 32-bit or 64-bit depending on the system you installed on your VM)

After that add this image into your VM's DVD and start your VM.

When booted up and logged in you might need to mount the cd image (in case you use a server image of Ubuntu) and aswell need some software to install.

# Run those commands if youre using Ubuntu server
sudo mount /dev/sr0 /media/cdrom

# The following you need always
sudo apt-get install build-essentials
sudo sh /media/cdrom/VBoxLinuxAdditions.run
Videonauth
  • 33,815