Run this:
mount myiso.iso /mnt/iso/ -t iso9660 -o ro,loop=/dev/loop0
mount myiso.iso /mnt/iso/ -t iso9660 -o ro,loop=/dev/loop0
Posted by Robert at 12/01/2008 08:29:00 AM 0 comments
Labels: Linux
In ubuntu: sudo apt-get install bchunk
Create a file:sudo gedit /usr/local/bin/bchunkcue
Paste this into the new file:
#!/bin/bash
echo “FILE “”$1.bin” ”BINARY” >> $1.cue
echo ” TRACK 01 MODE1/2352 >> $1.cue
echo ” INDEX 01 00:00:00 >> $1.cue
bchunk $1.bin $1.cue $1_
rm $1.cue
Make it executable: chmod a+x /usr/local/bin/bchunkcue
Then just run:bchunkcue filename
without the bin extension.
Posted by Robert at 12/01/2008 08:15:00 AM 0 comments
Labels: Linux