Skip to content

Instantly share code, notes, and snippets.

@biswarupadhikari
Created August 3, 2012 18:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save biswarupadhikari/3250304 to your computer and use it in GitHub Desktop.
Save biswarupadhikari/3250304 to your computer and use it in GitHub Desktop.
How to Convert .BIN/.CUE Files to .ISO in Ubuntu
Install bchunk using the following command
sudo aptitude install bchunk
This will complete the installation.
Using bchunk
bchunk syntax
bchunk [-v] [-p] [-r] [-w] [-s] <image.bin> <image.cue> <basename>
Available options
-v -- Makes binchunker print some more unnecessary messages, which should not be of interest for anyone.
-w -- Makes binchunker write audio tracks in WAV format.
-s -- Makes binchunker swap byte order in the samples of audio tracks.
-p -- Makes binchunker go into PSX mode and truncate MODE2/2352 tracks to 2336 bytes at offset 0 instead of normal 2048 bytes at offset 24.
-r -- Makes binchunker output MODE2/2352 tracks in raw format, from offset 0 for 2352 bytes. Good for MPEG/VCD.
Bchunk Example
bchunk IMAGE.bin IMAGE.cue IMAGE.iso
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment