Trying to burn .bin file in Ubuntu? Follow these instructions. It’s simple awesome!
- install bchunk:
sudo apt-get install bchunk
- create file –
sudo gedit /usr/local/bin/bchunkcue
-
with the following:
#!/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
- give it execution permission
chmod a+x /usr/local/bin/bchunkcue
- then just run
$bchunkcue filename
(without the bin extension)
- there should be a filename.iso. Burn it.
Source: Ubuntu forums



