exam questions

Exam EX200 All Questions

View all questions & answers for the EX200 exam

Exam EX200 topic 1 question 77 discussion

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

SIMULATION -
In the system, mounted the iso image /root/examine.iso to/mnt/iso directory. And enable automatically mount (permanent mount) after restart system.

Show Suggested Answer Hide Answer
Suggested Answer: See explanation below.
/etc/fstab:
/root/examine.iso /mnt/iso iso9660 loop 0 0 mount -a
mount | grep examine

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
adolfoale
Highly Voted 3 years, 10 months ago
In RHEL8: /root/examine.iso /mnt/iso iso9660 loop 0 0 mount -a
upvoted 6 times
...
Lazylinux
Most Recent 3 months, 2 weeks ago
Considering iso images are READ ONLY and hence no fear of data loss!! it is ok to use defaults instead of loop to avoid confusion and complicating things..refer here if you wish to read more http://ccrma.stanford.edu/planetccrma/man/man8/mount.8.html $echo /root/examine.iso /mnt/iso defaults 0 0 => Note you could use 0 1 to lessen the importance of system check on boot time $ mount -a $ findmnt -x => (Important to run this command as it will catch errors or warnings not picked up by mount -a)
upvoted 1 times
...
kenkct
2 years, 8 months ago
echo '/root/examine.iso /mnt/iso iso9660 loop 0 0' >> /etc/fstab
upvoted 3 times
...
cloudyhr
2 years, 11 months ago
automatic and permanent, this can also be active by autofs #dnf install autofs #systemctl start autofs #systemctl enable --now autofs by default autofs(/etc/auto.misc) is configured to mount cdrom on /misc/cd #cd /misc/cd ; ls
upvoted 1 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 ...