.bin and .cue files – combine to .iso on Mac OS X
I got .bin and .cue files from a friend. And was wondering how to use them on my Mac.
What are .bin and .cue files?
They are essentially CD/DVD image files. The .BIN / .CUE CD image format was made popular by the CDRWin software. Afterwards many programs have started supporting or partially supporting it, including: Nero, Blindwrite, CloneCD, FireBurner. The .CUE file contains the track layout information, while the .BIN file holds the actual data.
.ISO is also a CD image format, but is sometimes used for 'ISO9660 format' (standard, recognized by all applications) and sometimes for unique Easy CD ISO format.
So how can you open them on a Mac OS X?
Apple's DiskUtility does not support these formats. Roxio Toast or other CD burning software can open and burn from .bin+.cue files. But if you don't want to do all that, there is an easy way!
Use the bchunker command line program! You can download a Mac compiled version from James Sears' site and run a command like this to get an ISO file. This ISO file can now be easily mounted by DiskUtility.
-
bchunk myinputfile.bin myinputfile.cue myoutputfile
Resources:
Related posts:
- Recursively unlock files on Mac OS X I copied some songs from a CD and ended up...
- Finding number of lines in files recursively I wanted to find the number of lines from a...
- Setting up local copy of PHP manual – with smart lookups If you are a PHP developer, you probably know that...

Thanks. Was looking how to do this ages ago.
James Urquhart
25 Aug 08 at 3:12 pm
Just so you know, bchunk can be pulled from macports too, and that’s a little easier in terms of setting perms, etc. if you’ve got it.
$ sudo port install bchunk
Jon Raphaelson
23 Aug 09 at 12:21 am