Code: Select all
su -
mkdir /mnt/loop
mount -o loop /path/to/image.iso /mnt/loop
cd /mnt/loop
Code: Select all
cdrdao write filename.cueI do have those 2 files, but I don't want to write them. How can I just browse them? (I'm sorry if my question was not very clear)nephros wrote:usually you have two files, a .bin and a .cue file.
the .bin is the actual image, and the .cue file helps cd writing programs to correctly burn it.
once you have both files you can write them withprovided both files are in the same dir.Code: Select all
cdrdao write filename.cue
do a man cdrdao to learn about more options (like specifying your cd writer device, speed etc.). cdrdao is part of the cdrtools package.
Code: Select all
* app-cdr/bchunk
Latest version available: 1.1.1
Latest version installed: 1.1.1
Size of downloaded files: 14 kB
Homepage: http://hes.iki.fi/bchunk/
Description: Converts bin/cue CD-images to iso+wav/cdr
Code: Select all
* app-cdr/virtualcd
Latest version available: 0.4
Latest version installed: [ Not Installed ]
Size of downloaded files: 418 kB
Homepage: http://outertech.com/robert/virtualcd/
Description: mount bin/cue cd images

This spits back an error message for mecompu-tom wrote:mount the ISO image via the loop-back device:Is this what you're looking for?Code: Select all
su - mkdir /mnt/loop mount -o loop /path/to/image.iso /mnt/loop cd /mnt/loop
Code: Select all
mount: could not find any device /dev/loop#
*doh* Thanks for helping me with the obvious. I must have forgotten loopback support when I configured my first 2.6 kernel hahaaanund wrote:did you compile support for the using loopback into your kernel or as a module?