Consider the following /etc/fstab file:
/dev/hda1 swap swap defaults 0 0
/dev/hda2 / ext2 defaults 1 1
/dev/hda3 /home ext2 defaults 1 2
none /proc proc defaults 0 0
/dev/fd0 /media/floppy vfat user,noauto 0 0
What command can an ordinary (non-root) user use to mount a floppy disk in this system? (Please enter the command with all parameters and/or options)
Answer: mount /dev/fd0
The correct answer should be “mount /media/floppy”
Both possibilitys would be correct.
It takes the same effect.
You can use
mount /dev/fd0
AND
mount /media/floppy
BOTH works fine on every System.
I wonder, what is the correct answer in the LPIC-2 test?
Does anyone know it?
I’m pretty sure both answers are accepted as they are both equally correct