Which of the following commands will mount an already inserted CD-ROM in /dev/sr0 onto
an existing directory /mnt/cdrom when issued with root privileges?
A.
mount /dev/cdrom /mnt/cdrom
B.
mount /dev/sr0 /mnt/cdrom
C.
mount -t cdrom /dev/sr0 /mnt/cdrom
D.
mount -l cdrom /dev/sr0 /mnt/cdrom
E.
mount -f /dev/sr0/mnt/cdrom
answer is correct if cdrom is alias for iso9660
why not B?
I thought that the mount command automatically determines the type of mountable file system.