Checked the Note section while attaching EBS volume to EC2 instance.
Got the following note.
Note: Newer linux kernels may rename your devices to /dev/xvdf through /dev/xvdp internally,
even when the device name entered here (and shown in the details) is /dev/sdf through /dev/sdp.
Step 1:
# cat /proc/partitions
major minor #blocks name
202 65 6291456 xvde1
202 144 1048576 xvdj
Step 2:
# mkfs.ext3 /dev/xvdj
and it's done.
Got the following note.
Note: Newer linux kernels may rename your devices to /dev/xvdf through /dev/xvdp internally,
even when the device name entered here (and shown in the details) is /dev/sdf through /dev/sdp.
Step 1:
# cat /proc/partitions
major minor #blocks name
202 65 6291456 xvde1
202 144 1048576 xvdj
Step 2:
# mkfs.ext3 /dev/xvdj
and it's done.
Comments