VBoxManage createvm --name "XP" --register 创建虚拟机
VBoxManage unregistervm XP 删除虚拟机 删除rm文件 VBoxManage modifyvm "XP" --memory 512 调整虚拟机的内存大小 // VBoxManage modifyvm "XP" --acpi on --boot1 dvd --nic1 nat 调整虚拟机设置 // VBoxManage createhd --filename "XP.vdi" --size 10000 创建虚拟磁盘 VBoxManage controlvm XP poweroff 关闭虚拟机 VBoxManage storagectl "XP" --name "IDE Controller" --add ide --controller PIIX4 添加IDE控制器 VBoxManage storageattach "XP" --storagectl "IDE Controller" --port 0 --device 0 --type hdd --medium "XP.vdi" 虚机绑定虚拟硬盘 VBoxManage storageattach "XP" --storagectl "IDE Controller" --port 0 --device 1 --type dvddrive --medium /root/vol.iso 虚机绑定镜像 VBoxManage setextradata "Windows2003" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/guestssh/Protocol" TCP VBoxManage setextradata "Windows2003" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/guestssh/GuestPort" 1433 VBoxManage setextradata "Windows2003" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/guestssh/HostPort" 1433