Navigate to your folder containing game.cue, game (Track 1).bin, game (Track 2).bin, etc., and run:
bchunk game.cue game.iso
Or to be explicit:
bchunk -v game.cue game final_output.iso
What happens: bchunk reads the CUE sheet, follows every FILE reference, extracts the data blocks, and writes them sequentially into a single ISO. It automatically handles mode1, mode2, and audio track alignment.
Verification: Use isoinfo to check your new ISO: how to convert multiple bin files to one iso repack
isoinfo -d -i final_output.iso
FILE "track01.bin" BINARY
TRACK 01 MODE1/2352
INDEX 01 00:00:00
FILE "track02.bin" BINARY
TRACK 02 AUDIO
INDEX 01 00:00:00
bchunk will extract only the data track (MODE1/2352) into an ISO, discarding audio tracks.
If the
.cuefile contains more than oneTRACKor anyTRACK AUDIO, never convert to ISO. Use BIN/CUE, CCD/IMG, or MDS/MDF instead.
For archival: Keep original BIN/CUE + create a .chd (compressed, lossless) for emulation. Navigate to your folder containing game
The conversion of multiple BIN files to a single ISO repack is a deterministic process when using purpose-built tools like Bchunk or PowerISO. The critical steps are: (1) preserving the CUE sheet's track map, (2) selecting the correct data track, and (3) validating the resulting ISO's filesystem integrity. While ISO cannot replace BIN/CUE for mixed-mode or protected media, it provides a compact, universally compatible format for pure data discs. This methodology ensures reliable archival and emulation readiness.
Solution: You can regenerate a CUE sheet using:
Without a CUE sheet, you cannot correctly interleave multiple BINs. Do not attempt blind concatenation. Or to be explicit: bchunk -v game
Result: One ISO file, usually the exact size of the original CD (650-700MB or larger for DVDs).
The preservation and emulation of optical media, particularly CD-ROMs from the 1990s and early 2000s, often involves managing disk images stored in the BIN/CUE format. When a disc contains multiple data tracks, mixed audio, or subchannel data, ripping software frequently generates several BIN files paired with a single CUE sheet. This paper presents a systematic, technical procedure for consolidating multiple BIN files into a single, mountable ISO (International Organization for Standardization) image. The method prioritizes data integrity, cross-platform compatibility, and the preservation of original file systems while addressing common pitfalls such as audio track loss and multisession data.
PowerISO is the most user-friendly solution for converting multiple BIN files to a single ISO repack.