Download and install an archive utility like or WinRAR , or a virtual drive tool like WinCDEmu .
This public link is valid for 7 days and shares a thread, including any personal information you added. This link or copies made by others cannot be deleted. If you share with third parties, their policies apply. Can’t copy the link right now. Try again later.
| Tool | Purpose | Availability | |------|---------|---------------| | | Converts BIN/CUE to ISO, CDR, or raw | Linux, macOS, Windows (Cygwin/WSL) | | CDRDAO | Inspect and extract track structures | Cross-platform | | IsoBuster (optional) | Visual validation of track layout | Windows/macOS | | PowerISO (GUI alternative) | Direct repack from multiple BINs | Commercial, multi-OS |
Many older disc rips use a .cue sheet to index several small .bin files (tracks). To create a clean repack, you first need to merge these into a single "Big BIN." how to convert multiple bin files to one iso repack
Merging multiple tracks or discs into a single archive requires specialized utilities to combine the data streams without corrupting the file structure. Method 1: Using CDMage (Best for Multi-Track Games)
: Many emulators only recognize the first data track if they aren't properly indexed.
Older CD-ROMs utilized the BIN/CUE format to separate data tracks from audio tracks. Download and install an archive utility like or
| Source Type | Convertible to ISO? | Data Loss? | |-------------|--------------------|-------------| | Single data track + multiple BIN parts (split by size) | ✅ Yes | None | | Mixed Mode CD (data + audio tracks) | ❌ No | Audio tracks lost | | CD with subchannel data (e.g., SafeDisc, SecuROM) | ❌ No | Copy protection broken | | Multi-session disc | ❌ No | Later sessions lost |
If your game has one .cue file pointing to multiple .bin tracks (usually data mixed with audio), is the best tool to merge them into a single, clean image before final conversion. Step 1: Open the CUE Map Download and launch CDMage . Click File > Open . Select the .cue file that indexes your multiple .bin files. Step 2: Save as a Single Image Click File > Save As . Choose a destination folder. Set the save type to CueSheet Image (*.cue) .
If you have dozens of games to repack, manual conversion is tedious. You can use specialized scripts or batch utilities: Convert Image File to ISO - PowerISO If you share with third parties, their policies apply
For archival: Keep original BIN/CUE + create a .chd (compressed, lossless) for emulation.
mkisofs -o final_iso.iso /path/to/directory
for %%i in (*.cue) do chdman createcd -i "%%i" -o "%%~ni.chd" Use code with caution.
| Problem | Likely Cause | Solution | |---------|--------------|----------| | ISO smaller than total BIN size | Audio tracks omitted | Keep as BIN/CUE; cannot convert to ISO | | Extracted files corrupted | Wrong block size (2352 vs 2048) | Use bchunk -w 2048 | | ISO doesn't mount | Missing volume descriptor | Convert with dd if=first.bin of=image.iso bs=2048 | | Game/software fails to run | Copy protection lost | Use virtual drive (Daemon Tools) with original BIN/CUE |