Showing posts with label DVD mount. Show all posts
Showing posts with label DVD mount. Show all posts

Tuesday, May 27, 2008

Mount ISO images as physical devices

Here is a great how-to with mounting ISO images as though they were a physical device like a CD-ROM or DVD drive:

http://www.cyberciti.biz/tips/how-to-mount-iso-image-under-linux.html

Mount a cdrom from the command line

To mount a cdrom (or DVD) from the command line, do the following:

#mount -t iso9660 -o ro <device> <mountedDirectory>

Example:

# mount -t iso9660 -o ro /dev/cdrom /media/cdrom

Note: make sure that /media/cdrom exists.