Created
July 17, 2014 12:00
-
-
Save bcambel/1e67449e028ae37b7f06 to your computer and use it in GitHub Desktop.
Whole tutorial resides at http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-using-volumes.html
This file contains hidden or 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
| lsblk | |
| # check disk status | |
| sudo file -s /dev/xvdf | |
| # format the disk | |
| sudo mkfs -t ext4 device_name | |
| mkdir mount_point | |
| mount device_name mount_point |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment