Created
November 9, 2012 15:43
-
-
Save mdobson/4046402 to your computer and use it in GitHub Desktop.
quick note: resizing EBS Block on EC2 so we have what's really allocated
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
NB: Ran into issues provisioning EC@ servers today where my EBS storage was sticking at the default 8gb storage level. I allocated double that and was wondering where the storage was. Long story short you need to resize the attached hardware so it knows how to do this. | |
sudo resize2fs /dev/sda1 | |
The above command will resize everything nicely. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment