Skip to content

Instantly share code, notes, and snippets.

@messaoudi-mounir
Created March 29, 2021 10:23
Show Gist options
  • Save messaoudi-mounir/a607d8d3818b833b4e05cfc92c9cc944 to your computer and use it in GitHub Desktop.
Save messaoudi-mounir/a607d8d3818b833b4e05cfc92c9cc944 to your computer and use it in GitHub Desktop.
# Clone the .vmdk image to a .vdi.
vboxmanage clonehd "virtualdisk.vmdk" "new-virtualdisk.vdi" --format vdi
# Resize the new .vdi image (30720 == 30 GB).
vboxmanage modifyhd "new-virtualdisk.vdi" --resize 30720
# Optional; switch back to a .vmdk.
VBoxManage clonehd "new-virtualdisk.vdi" "resized-virtualdisk.vmdk" --format vmdk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment