What command can an ordinary (non-root) user use to mount a floppy disk in this system?

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)

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)

A.
mount /dev/fd0



Leave a Reply 1

Your email address will not be published. Required fields are marked *


capslock

capslock

Giving only the mount point should also work:
mount /media/floppy

From mount man page:
When mounting a filesystem mentioned in fstab or mtab, it suffices to give only the device, or only the mount point.