CompTIA Linux+ (XK0-004) — Question 64
A systems administrator wants to mount an ISO to access its content. Using /mnt as a mount point, which of the following is the correct syntax?
Answer options
- A. mount -o iso9660 /dev/sr0 /mnt
- B. mount -o loop -t iso /mnt
- C. mount -o loop /tmp/image.iso /mnt
- D. mount -o loop /dev/kvm /mnt
Correct answer: D
Explanation
The correct answer is D because it specifies the correct usage of the 'loop' option to mount an image file. Options A and C are incorrect as they do not use the correct parameters for mounting an ISO image, and option B is also incorrect because it lacks the necessary image file specification.