DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Mounting Iso/bin/cue
* <b>Method 1: Use CDEmu. </b>
cdemu 0 pro.cue
mount -t iso9660 /dev/cdemu/0 /mnt/temp
* Method 2: Convert to ISO. Convert BIN/CUE to ISO:
bchunk -v acrobat6pro.bin pro.cue pro
* Just mount the ISO by executing as root.
mount -o loop,ro -t iso9660 <filename>.iso <mountpoint>
mount -o loop pro01.iso /mnt/temp





