LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   How to mount iso cd images (https://www.linuxquestions.org/questions/linux-general-1/how-to-mount-iso-cd-images-38981/)

SuperSadSmile 12-20-2002 12:51 PM

How to mount iso cd images
 
I wanna see a divx on my Linux station, using xine.

I have already created the iso images using clonecd
under win98.

I was wondering if there is some kind of kind program which can help me at all.
I mean to help me to mount my iso images (two isos precisely)

(of course i can get inside my win98 partitions;
i'm working to became an idiot, but i'm not yet)

MasterC 12-20-2002 03:09 PM

You can mount as many iso's as you'd like:
mount -o loop /home/whatever/image.iso /mnt/image

Of course /mnt/image will need to exist to mount something there:
mkdir /mnt/image

You can mount wherever, this is just my example.

Cool

SuperSadSmile 12-21-2002 01:18 PM

ok! Got it!
Few questions more:

Any way to mount *.cue or *.img images instead?

Do I have to convert the images or something?

Either case, what programs could I use to do that?

beingben 02-19-2003 10:45 PM

from the console
dd if=/dev/cdrom of=/home/whatever/myimage.iso

"if" is the "in file" or device that the data is coming from
"of" is the "out file"
dd copies it's source bit for bit which equals an ISO image in this case because the cdrom format is ISO.

Mik 02-20-2003 05:53 AM

Quote:

Originally posted by MasterC
You can mount as many iso's as you'd like:
Mount will use the files /dev/loopX. If you don't specify one then the first free one will be taken. So you can mount as many iso's as there are available /dev/loopX devices. Ofcourse if you run out you can always create more with mknod.


Quote:

Originally posted by SuperSadSmile
Any way to mount *.cue or *.img images instead
There is a utility called bchunk to convert a .cue file + .bin file to a normal iso image. But it depends on the contents of the image, it destroys some essential parts if you do it to an image of a VCD.


All times are GMT -5. The time now is 04:26 PM.