1、IDE控制器
创建:VBoxManage storagectl testvm --name "IDE Controller" --add ide卸载VBoxManage storagectl testvm --name "IDE Controller" --remove2、虚拟磁盘a、创建磁盘VBoxManage createvdi --filename /home/virtualbox/winxp.vdi --size 5000 --remember删除存储设备VBoxManage closemedium disk /home/virtualbox/winxp.vdi --delete重新设置存储设备在virtualbox中的uuid,其中4ed3933b-7871-47a9-8f53-093b9dbb1762为指定的新uuidVBoxManage storageattach "testvm" --storagectl "IDE Controller" --port 1 --device 0 --type hdd --medium /home/virtualbox/winxp.vdi --setuuid 4ed3933b-7871-47a9-8f53-093b9dbb1762b、显示磁盘信息VBoxManage showvdiinfo /home/virtualbox/winxp.vdic、删除虚拟硬盘UUID重新分配VBoxManage clonevdi 670fd01f-6383-4d32-a089-ac42b51a5d07 /root/"VirtualBox VMs"/testvm/testvm2.vdi修改VBoxManage modifyvdi <uuid>|<filename> compact 压缩指定的虚拟硬盘VBoxManage clonevdi <uuid>|<filename> <outputfile> 克隆指定的VDI虚拟硬盘VBoxManage convertdd [-static] <filename> <outputfile> 将raw硬盘转换成vdi虚拟硬盘挂载到ideVBoxManage modifyvm testvm --hda /root/"VirtualBox VMs"/testvm/testvm.vdi或者VBoxManage storageattach testvm --storagectl "IDE Controller" --port 0 --device 0 --type hdd --medium /root/VirtualBox\ VMs/testvm/testvm.vdi卸载VBoxManage storageattach testvm --storagectl "IDE Controller" --port 0 --device 0 --type hdd --medium none或者VBoxManage modifyvm testvm --hda none3、虚拟光盘a、挂载虚拟光盘VBoxManage storageattach testvm --storagectl "IDE Controller" --port 1 --device 0 --type dvddrive --medium /usr/share/virtualbox/VBoxGuestAdditions.iso或者VBoxManage modifyvm testvm --dvd /usr/share/virtualbox/VBoxGuestAdditions2.isob、卸载虚拟光盘VBoxManage storageattach testvm --storagectl "IDE Controller" --port 1 --device 0 --type dvddrive --medium none4、挂载usbVBoxManage list usbhostVBoxManage controlvm testvm usbattach 42bc94ab-9bf7-4bec-940b-1d525f656c9c5、虚拟声卡VBoxManage modifyvm testvm --audio dsound附命令大全:http://www.virtualbox.org/manual/ch08.html#vboxmanage-clonevm