console resolution von vmware player

This is what I used to do (CLI-only):

/boot/loader.conf
Code:
kern.vty=sc

Get a list of supported modes
# vidcontrol -i mode

Output:
Code:
MODE_ABC
.
.
.
MODE_XYZ

Check them all, one by one:
# vidcontrol MODE_XYZ

Select one, and set it in the /etc/rc.conf

/etc/rc.conf
Code:
allscreens_flags="MODE_XYZ"
 
Back
Top