Fullscreen FreeBSD Guest in VirtualBox Help

I've had some luck in the past by setting my shell console with the vidcontrol command like this:

Get the list of video modes your hardware can support by typing the following:
vidcontrol -i mode
then choose which one you'd like to try and pre-pend the number with "MODE_" like this to set to that video resolution:
vidcontrol MODE_327
If you want to automatically set to that resolution at start up put the following in /etc/rc.conf:
Code:
allscreens_flags="MODE_374"
 
grimgent said:

Thank you, @grimgent! Following this link precisely worked. I'm sure I've seen some of the veterans talking about running FreeBSD in VMs; surprised none of them encountered this problem or had no solution for it. Fortunately, you did! Really appreciate you making the time to share the solution. Thanks again.

I think I'm going to stand up a site detailing all the nuances and faults I've encountered, and some I've read about, in a clean FreeBSD install and provide fixes in an attempt to ease the transition process for others. Hopefully, the compendious site will provide some help as it's rather difficult to locate solutions at times.

segfault said:
I've had some luck in the past by setting my shell console with the vidcontrol command like this:

Get the list of video modes your hardware can support by typing the following:
vidcontrol -i mode
then choose which one you'd like to try and pre-pend the number with "MODE_" like this to set to that video resolution:
vidcontrol MODE_327
If you want to automatically set to that resolution at start up put the following in /etc/rc.conf:
Code:
allscreens_flags="MODE_374"

I didn't need to try this solution, as @grimgent's link worked perfectly. Thank you very much for posting though!
 
Last edited by a moderator:
Back
Top