LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   mounting images (https://www.linuxquestions.org/questions/linux-newbie-8/mounting-images-795559/)

tavva divya 03-15-2010 01:17 PM

mounting images
 
I have *.iso images on a CD. I had used nero to mount these images in windows. How can I use them in linux !

troop 03-15-2010 01:21 PM

Code:

mount -o loop disk.iso /mnt/disk

raju.mopidevi 03-15-2010 01:21 PM

mount -t iso9660 -o ro,loop /path/to/iso /mnt/iso

tavva divya 03-15-2010 01:26 PM

thank you for the both, 2 different solutions.
2nd one is quite complex than first one. Explain it for me

raju.mopidevi 03-15-2010 01:28 PM

If one wants to avoid writing, -t iso9660 can be skipped since it's the default.
-o ro is for read-only mounting, it is quite useful, it's not always wise writing to images


All times are GMT -5. The time now is 12:37 PM.