SIMULATION - Create a logical volume - Create a new logical volume as required: Name the logical volume as database, belongs to datastore of the volume group, size is 50 PE. Expansion size of each volume in volume group datastore is 16MB. Use ext3 to format this new logical volume, this logical volume should automatically mount to /mnt/database  Suggested Answer: See explanation below. fdisk -cu /dev/vda// Create a 1G partition, modified when needed 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 Restart and check all the questions requirements. 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