Valid EX200 Dumps shared by ExamDiscuss.com for Helping Passing EX200 Exam! ExamDiscuss.com now offer the newest EX200 exam dumps, the ExamDiscuss.com EX200 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com EX200 dumps with Test Engine here:
Create a new logical volume according to the following requirements: The logical volume is named database and belongs to the datastore volume group and has a size of 50 extents. Logical volumes in the datastore volume group should have an extent size of 16 MB. Format the new logical volume with a ext3 filesystem. The logical volume should be automatically mounted under /mnt/database at system boot time.
Correct Answer:
fdisk -cu /dev/vda partx -a /dev/vda pvcreate /dev/vdax vgcreate datastore /dev/vdax -s 16M lvcreate-l 50 -n database datastore mkfs.ext3 /dev/datastore/database mkdir /mnt/database mount /dev/datastore/database /mnt/database/ df -Th vi /etc/fstab /dev/datastore /database /mnt/database/ ext3 defaults 0 0 mount -a