Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.

Unlimited Access

Get Unlimited Contributor Access to the all ExamTopics Exams!
Take advantage of PDF Files for 1000+ Exams along with community discussions and pass IT Certification Exams Easily.

Exam EX200 topic 1 question 40 discussion

Actual exam question from RedHat's EX200
Question #: 40
Topic #: 1
[All EX200 Questions]

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

Show Suggested Answer Hide Answer
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.

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
ionix
Highly Voted 3 years ago
# vgcreate -s 16M datastore /dev/sdxx # lvcreate -l 50 -n database datastore # lvs # mkdir /mnt/database # mkfs.ext3 /dev/datastore/database # echo "/dev/datastore/database /mnt/database/ ext3 defaults 0 0" >> /etc/fstab # mount -a # df -h
upvoted 18 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...