Welcome to LQ.
/mnt/cdrom isn't a block device, so that is true. It is the directory where the cdrom gets mounted. The block device will be in the /dev directory. If it is mounted,
Code:
mount | grep cdrom | awk '{print $1}'
should give you the block device name.
HTH
Forrest