VirtualBox/Ubuntu full screen mode resolution

The window size is controlled by the VM's screen resolution. If you manually resize the window on the host you'll only zoom on the image returned by the VM, so of course this gives a very bad image quality.

Change the screen's resolution in the VM's configuration, either via the GUI, or directly via the command line with xrandr.

First run xrandr with no arguments, it'll display all outputs (in this case they're just the virtual outputs emulated by VirtualBox).

Screen 0: minimum 320 x 200, current 1024 x 768, maximum 8192 x 8192
VGA1 connected 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
...

Now run xrandr --output <output> --size <resolution> and replace "output" and "size" with the connected output that you got from the previous command (in this case VGA1) and the resolution you want to set, I recommend setting it just a bit lower than your actual monitor to leave space for the taskbar and Virtualbox window title bar.

Example : xrandr --output VGA1 --size 1920x1040.

Once you set the resolution in the VM, VirtualBox will automatically resize its window on the host.

By the way, here's the official Ubuntu documentation about changing the screen's resolution.


When using VirtualBox the default resolutions are limited to just a few common resolutions. In order to enable the native resolution of your monitor you'll need to properly install the Guest Additons. Here's how you do this within Linux:

  1. Mount the Guest Additions by selecting Devices --> Insert Guest Additions CD image... Ya I know it's fedora
  2. run the VBoxLinuxAdditions.run script within the newly mounted cd
  3. wait for it to do it's business and then restart the Guest OS

After you run this, VirtualBox should automatically resize the Guest resolution to the window size. Pressing right Ctrl + F will toggle full screen of that monitor.