VBoxManage createvm --name foobar \ --ostype OpenSUSE_64 \ --register VBoxManage modifyvm foobar \ --memory 10240 \ --cpus 4 \ --cpuexecutioncap 50 \ --acpi on \ --boot1 dvd \ --boot2 disk \ --boot3 none \ --boot4 none \ --nic1 bridged \ --bridgeadapter1 eth0 \ --macaddress1 ************ VBoxManage createhd --filename "foobar/foobar.vdi" \ --size 1048576 VBoxManage storagectl foobar \ --name SATA \ --add sata \ --sataportcount 2 \ --bootable on VBoxManage storageattach foobar \ --storagectl SATA \ --port 0 \ --device 0 \ --type hdd \ --medium "foobar/foobar.vdi" VBoxManage storageattach foobar \ --storagectl SATA \ --port 1 \ --device 0 \ --type dvddrive \ --medium "/home/vms/sw/openSUSE-12.3-DVD-x86_64.iso" VBoxManage showvminfo foobar | more #start VBoxHeadless --startvm foobar --vrde config &