Last active
May 3, 2017 12:12
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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