I decided to play with FreeBSD 13.3-RC1 in VirtualBox. My display is capable of 1920×1200, and we must specify this both in the VirtualBox XML file for the guest and in the guest’s /boot/loader.conf. The font specification goes in the latter file.

You better do the changes to the XML file while the guest is shut down and you preferably have closed the VIrtualBox GUI. The XML file contains a section named ExtraData. Add a new instance of the ExtraDataItem entity as shown below. There will most likely be three other instances of ExtraDataItem.

<VirtualBox>
  <Machine>
    <ExtraData>
      <ExtraDataItem name="GUI/MaxGuestResolution" value="1920x1200"/>
    </ExtraData>
  </Machine>
</VirtualBox>

These are the changes for the guest’s /boot/loader.conf.

efi_max_resolution="1920x1200"
screen.font="8x16"

Reboot the guest and switch to full screen for this to take effect.

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes:

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>