Mount an EBS Volume on CentOS
1. Create a new EBS Volume. Note the device name returned by AMZ e.g. /dev/sdf
2. Login to your Amazon Instance
3. At the prompt type fdisk /dev/sdf
4. Create a new primary partition and accept all the default values.
5. Type (w) to write partition data to disk
6. At the command prompt type mkfs.ext3 /dev/sdf to format as an ext3 file system.
7. mkdir /web
8.Type mount /dev/sdf /web
2. Login to your Amazon Instance
3. At the prompt type fdisk /dev/sdf
4. Create a new primary partition and accept all the default values.
5. Type (w) to write partition data to disk
6. At the command prompt type mkfs.ext3 /dev/sdf to format as an ext3 file system.
7. mkdir /web
8.Type mount /dev/sdf /web
Comments
Post a Comment