Wednesday, December 28, 2016

Virtualbox : Resizing Disk

Solutions:

To resizing the disk format .vdi to 100G

#VBoxManage modifyhd "cloned.vdi" --resize 100000

For disk using format .vmdk must convert to .vdi format 1st before do resizing process.

#VBoxManage clonehd "source.vmdk" "cloned.vdi" --format vdi
#VBoxManage modifyhd "cloned.vdi" --resize 51200 
#VBoxManage clonehd "cloned.vdi" "resized.vmdk" --format vmdk

source :

Related Posts:

0 comments:

Post a Comment