SIMULATION - 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. Â Suggested Answer: See explanation below. 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 This question is in EX200 Red Hat Certified System Administrator (RHCSA) Exam For getting Red Hat Certified System Administrator (RHCSA) Certificate Disclaimers: The website is not related to, affiliated with, endorsed or authorized by Redhat. Trademarks, certification & product names are used for reference only and belong to Redhat. The website does not contain actual questions and answers from Redhat's Certification Exam.
Please login or Register to submit your answer