I am pretty new to Amazon Web Services. I made my first EBS volume (through both the command line and the AWS web app) and attached it to a running instance at /dev/sdh as seen here. The web app shows me that it has been successfully attached to the instance. However, the folder /dev/sdh does not show up on the instance, nor does df -h reveal that it is there. What else do I need to do?

I am not sure if this helps, but the instance is an Ubuntu 11.04 Large.

link|improve this question

Did you attempt to format or mount it? If so, what happened when you tried to mount it? – Iterator Aug 8 '11 at 18:27
@Iterator - I got to this step in the linked document: sudo mkfs.xfs /dev/sdh. At this point it fails because /dev/sdh doesn't exist. – skaz Aug 8 '11 at 18:30
@Iterator - I already have the machine up when I attached it. Is that not the right way to do it? – skaz Aug 8 '11 at 18:32
I'm not sure I'll be able to help, but I would also suggest posting to the AWS forum. I've gotten very fast answers there, including from Amazon tech support folks. – Iterator Aug 8 '11 at 18:33
It's fine to have the machine up. You can attach and detach while the instance is running. In any case, I'm not sure I can help. I simply haven't had that issue arise and wouldn't know what to check. – Iterator Aug 8 '11 at 18:34
feedback

1 Answer

up vote 8 down vote accepted

Not sure if it will be the reason in your case, but we found a similar problem while integrating Fedora images in our infrastructure for BitNami Cloud Hosting.

Some kernels use /dev/xvd* instead of /dev/sd*. In your case, if you have attached the volume with device name /dev/sdh it would appear as /dev/xvdh in the machine.

I hope it helps.

link|improve this answer
Carlos SM - This was it - thanks so much! – skaz Aug 8 '11 at 20:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.