Seems like OP is confusing graphics mode and text mode.
Text mode comes first. If you can see the machine's BIOS, then text mode will be visible. It is possible to play with some colors in text mode, but the important part is that it's text. Normally, text mode is 80 characters wide and 23 characters tall. That means you can see at most 23 lines of text.
You can leave it at that, or you can play with colors of text. Oh, and ignore VT-x stuff altogether, it's irrelevant.
To get graphics mode going, it takes starting in text mode. I would suggest that OP install the graphics driver. Going by what was said earlier in the thread, that was done. However, installing the driver is not the same as turning it on. From this point, as I said earlier, doing stuff in order, like 1, 2, 3, done - that will make a difference. So, without further ado:
Once all that is done, then you can play with resolution, and what not. Skipping steps and going straight to the part where you think resolution is specified - that approach has left countless users pretty frustrated with "why isn't this working for me?".
Text mode comes first. If you can see the machine's BIOS, then text mode will be visible. It is possible to play with some colors in text mode, but the important part is that it's text. Normally, text mode is 80 characters wide and 23 characters tall. That means you can see at most 23 lines of text.
You can leave it at that, or you can play with colors of text. Oh, and ignore VT-x stuff altogether, it's irrelevant.
To get graphics mode going, it takes starting in text mode. I would suggest that OP install the graphics driver. Going by what was said earlier in the thread, that was done. However, installing the driver is not the same as turning it on. From this point, as I said earlier, doing stuff in order, like 1, 2, 3, done - that will make a difference. So, without further ado:
# pkg install xorg
// You gotta be root for that.# pkg install twm
// You gotta be root for that.# pkg install xdm
// Need a login manager for a graphic desktop.# pkg install nano
// Nano is a text editor that works in text mode, you'll need it.# nano /etc/rc.conf
// Add the following lines to /etc/rc.conf:xdm_enable="YES"
//kld_list="/full/path/to/vesa.ko"
// vesa.ko part can be replaced with mga.ko. Full and correct filepath is recommended for your scenario to work.
# reboot
Once all that is done, then you can play with resolution, and what not. Skipping steps and going straight to the part where you think resolution is specified - that approach has left countless users pretty frustrated with "why isn't this working for me?".