Last Updated: February 25, 2016
·
518
· ryan

AWS EC2 disk on Linux confusion

After our instance store instance had issues, we converted it to an EBS store. So according to the AWS documentation, you have to mount the partition to the filesystem. The AWS docs are a bit heavy, so for a quick reference:

AWS console: /dev/sdf<br>
Linux console: /dev/xvdf

These are the same partitions, just different names.

AWS Docs:<br>
http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-attaching-volume.html

Great how-to: <br>
http://maplpro.blogspot.com/2012/05/how-to-mount-ebs-volume-into-ec2-ubuntu.html

-Ryan