How to mount stuff in Linux
Mounting a CDROM:
1. Make a mount point in /mnt directory
mkdir /mnt/cdrom
2. Mount the CDROM
mount /dev/cdrom /mnt/cdrom
To verify, Type: mount
display should include:
/dev/sr0 on /mnt/cdrom type iso9660 (ro)
To mount a DVD or CD .iso file:
mkdir /mnt/dvdiso # Create a folder for the mount point
mount -ro loop /tmp/iso_file.iso /mnt/dvdiso #assuming the iso file is located in /tmp