Skip to content

Instantly share code, notes, and snippets.

@SarahBourgeois
Last active May 3, 2017 12:12
Show Gist options
  • Save SarahBourgeois/494802eafa17416dfabe4be817a90c1d to your computer and use it in GitHub Desktop.
Save SarahBourgeois/494802eafa17416dfabe4be817a90c1d to your computer and use it in GitHub Desktop.
Increase the .vdi hard disk of your Virtual Machine (With Virtual Box and windows
# 1- open terminal and go to the path of your .vdi you want to modify and do
VboxManage modifymedium <name of your .vdi --resize 80000
# 80000 equals 80
# 2- launch your Virtual Machine.
# 3 -launch DiskPart on your Windows computer. In DiskPart terminal do :
# list volume
list volume
# select the volume you want to modidy
select Volume <volume number>
# extend volume (here 80 go)
extend
# Verify your extend volume
list volume
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment