ubuntu 24 - convert *.bin and *.cue files to *.iso file
Bash[Edit]
+
0
-
0
Ubuntu 24 - convert *.bin and *.cue files to *.iso file
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31bchunk input.bin input.cue output # Where: # `input.bin` and `input.cue` are input files, # `output` is prefix name for output files. # Hint: to install `bchunk` command under Debian / Ubuntu use `sudo apt-get install bchunk` command. # Example output: # # binchunker for Unix, version 1.2.2 by Heikki Hannikainen <hessu@hes.iki.fi> # Created with the kind help of Bob Marietta <marietrg@SLU.EDU>, # partly based on his Pascal (Delphi) implementation. # Support for MODE2/2352 ISO tracks thanks to input from # Godmar Back <gback@cs.utah.edu>, Colas Nahaboo <Colas@Nahaboo.com> # and Matthew Green <mrg@eterna.com.au>. # Released under the GNU GPL, version 2 or later (at your option). # # Reading the CUE file: # # Track 1: MODE1/2352 01 00:00:00 # Track 2: AUDIO 01 08:62:33 # Track 3: AUDIO 01 12:44:39 # # Writing tracks: # # 1: output01.iso 84/84 MB [********************] 100 % # 2: output02.cdr 54/54 MB [********************] 100 % # 3: output03.cdr 59/59 MB [********************] 100 %