Mounting an EBS in Eucalyptus
First, do
# fdisk -l
to list the device available. You can identify what's the current device the Eucalyptus have avail for the current block storage given.
Now, to mount this, do
# mkfs.ext4 /dev/sda
where my current filing system is ext4 and the availed virtual device is /dev/sda. Then afterwards, you can do
# mount -t ext4 /dev/sda /path/to/mounted/directory
Hope this helps.
# fdisk -l
to list the device available. You can identify what's the current device the Eucalyptus have avail for the current block storage given.
Now, to mount this, do
# mkfs.ext4 /dev/sda
where my current filing system is ext4 and the availed virtual device is /dev/sda. Then afterwards, you can do
# mount -t ext4 /dev/sda /path/to/mounted/directory
Hope this helps.
Comments