Virtualbox “port forward” from Guest to Host [closed]

Network communication Host -> Guest Connect to the Guest and find out the ip address: ifconfig example of result (ip address is 10.0.2.15): eth0 Link encap:Ethernet HWaddr 08:00:27:AE:36:99 inet addr:10.0.2.15 Bcast:10.0.2.255 Mask:255.255.255.0 Go to Vbox instance window -> Menu -> Network adapters: adapter should be NAT click on “port forwarding” insert new record (+ icon) … Read more

VT-x is disabled in the BIOS for both all CPU modes (VERR_VMX_MSR_ALL_VMX_DISABLED)

It is a RAM related issue. The documentation is self explanatory: You are trying to allocate >3GB of RAM to the VM. This requires: (a) a 64 bit host system; and (b) true hardware pass-through ie VT-x. Fast solution Allocate less than 3GB for the virtual machine. Complete solution Make sure your system is 64 … Read more

How to resize a VirtualBox vmdk file [closed]

If you want to end having back a vmdk hard disk (maybe you are interested in using the disk in vwmare too), the complete steps are: VBoxManage clonemedium “source.vmdk” “cloned.vdi” –format vdi VBoxManage modifymedium “cloned.vdi” –resize 51200 VBoxManage clonemedium “cloned.vdi” “resized.vmdk” –format vmdk The above will resize the hard disk up to 50GB (50 * … Read more

tech