4

Linux newbie - I have recently installed Kubuntu into VirtualBox (on my laptop) to play around with, but I cannot get Kubuntu to go to a higher resolution.

VirtualBox setup:

  • Base Memory = 4gb
  • Video Memory = 64Mb
  • Graphics Controller = VMSVGA

Any suggestions would be greatly appreciated cheers

Zanna
  • 70,465
Smac
  • 81

4 Answers4

3

Just right click on the image of the monitor in the bottom right of your running VM and then change the resolution to the desired one.

Scale and Resize options list

I struggled too to figure it out ;)

Zanna
  • 70,465
3

Looks like i have fixed it: I have changed the VirtualBox Graphics Controller to VMSVGA - started Kubuntu again and this time it was accepted higher Resolutions and kept them.

Smac
  • 81
1

Did you try to install the VirtualBox's Guest Additions CD image? This can resolve your problem I think.

If you didn't install it, follow this procedure:

  • Run your VM.
  • Then go to the Virtual Box's menu and under Devices select Insert Guest additions Cd Image.
  • Once the Image is inserted, go to /media/<your_user>/VBox_GAs_6.0.14/ and run the script VBoxLinuxAdditions.run with root privileges (sudo).

After the script execution your VM will (normally) adapt the resolution automatically.

Eliah Kagan
  • 117,780
Colin
  • 13
  • 2
    Good answer. Note that VBoxLinuxAdditions will require gcc to be installed. You can install the most essential and used build tools using sudo apt install build-essential before running the script. – Mooncake Oct 30 '20 at 11:11
0
Section "Device"
Identifier "Configured Video Device"
EndSection

Section "Monitor"
Identifier "Monitor0"
VendorName "KDS"
ModelName "VS-7e"
HorizSync 30-70
VertRefresh 50-120
EndSection

Section "Screen"
Identifier "Screen0"
Device "Configured Video Device"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1024x768"
EndSubSection
EndSection

write the code above and save the file as xorg.conf in virtualbox.

Zanna
  • 70,465