What command is used to mount a floppy disk image under /mnt/floppy?
A.
mount root.img /mnt/floppy
B.
mount -loop root.img /mnt/floppy
C.
mount -l root.img /mnt/floppy
D.
mount -o loop root.img /mnt/floppy
E.
mount root.img
Explanation:
To mount the image file, there is one option loop should use as mounting option. Some Mounting Options are: ro, rw, user, nouser, auto, noauto, suid, nosuid, loop etc all there options should give with -o option.