如何把img镜像转为vdi镜像

VBoxManage convertdd ./xx.img ./yy.vdi

如果img文件大小不能被512整除,是不行的

可以用dd修一下,先搞一个巨大得能被512整除得数,比如128m,然后再执行上面得转换

dd if=xx.img of=openwrt.img bs=128000 conv=sync

然后可以扩容到

VBoxManage modifymedium xx.vdi --resize z

其中z的单位是MB

Leave a Reply

Your email address will not be published. Required fields are marked *