Difference between revisions of "Talk:VirtualBox"

From SME Server
Jump to navigationJump to search
m (Removing content, all comments are taken care of)
Line 1: Line 1:
 +
to resize a vmdk virtual hard disk file
 +
* shutdown the VM
 +
  VBoxManage clonehd "source.vmdk" "cloned.vdi" --format vdi
 +
VBoxManage modifyhd "cloned.vdi" --resize 51200
 +
VBoxManage clonehd "cloned.vdi" "resized.vmdk" --format vmdk
  
 +
The above will resize the hard disk up to 50GB (50 * 1024MB).
 +
 +
Then you have to resize the drive inside the VM
 +
 +
 +
[[User:Unnilennium|Unnilennium]] ([[User talk:Unnilennium|talk]]) 17:03, 7 January 2014 (MST)

Revision as of 02:03, 8 January 2014

to resize a vmdk virtual hard disk file

  • shutdown the VM
 VBoxManage clonehd "source.vmdk" "cloned.vdi" --format vdi
VBoxManage modifyhd "cloned.vdi" --resize 51200
VBoxManage clonehd "cloned.vdi" "resized.vmdk" --format vmdk

The above will resize the hard disk up to 50GB (50 * 1024MB).

Then you have to resize the drive inside the VM


Unnilennium (talk) 17:03, 7 January 2014 (MST)