Find and mount cdrom drive on centos linux

Detect the device using wodim --devices and remember the drive name, I’ll assume it was /dev/scd0

Make a directory to mount the device on with mkdir /media/cdrom

Mount it with mount -t iso9660 /dev/scd0 /media/cdrom

Drive contents can now be found at /media/cdrom. Unmount with umount /dev/sda0