This is a simple way to create image from CD or any other block devices under linux.
$ dd if=/dev/cdrom0 of=output.iso
Change cdrom0 with devices you need to make image from, and output.iso with image file result.
To mount it, use
$ mount -o loop output.iso /path/to/mntdir