How to mount bin / cue image files in Linux

Mounting iso-files in Linux is quite straight forward and simple e.g. using the mounter function in Ubuntu straight from the context menu or by using a command line like this: mount -o loop image.iso /mnt.

Anyway mounting bin/cue image files is not that straight forward as they’ll need conversion to iso before mounting, however the process is quite simple, but it need a small application called bchunk. The bchunk package contains a UNIX/C rewrite of the BinChunker program. BinChunker converts a CD image in a .bin/.cue format (sometimes .raw/.cue) into a set of .iso and .cdr/.wav tracks. The .bin/.cue format is used by some non-UNIX CD-writing software (read crap windows software), but is not supported on most other CD-writing programs.

$ sudo aptitude install bchunk

In order to convert a bin/cue image set:

$ bchunk image.bin image.cue image.iso

Then to mount the iso image using this command:
mount -o loop image.iso /mnt

Related posts:

  1. Migrate existing Ext3 filesystems to Ext4
  2. How to Mount a Remote Filesystem Using SSH and sshfs
  3. Howto: Resize Xen Loop Disk Image
  4. Linux I/O Redirection
  5. Rethinking the GUI (Graphical User Interface) and the CLI (Command Line Interface)
  6. What is the coolest thing you can do using Linux that you can’t do with Windows or on a Mac?
  7. dos2unix on Ubuntu and Debian
  8. Linux Howto: Find the most recently changed files (recursively)
  9. Linux Job Market Trends: Galloping Forward
  10. Howto Recover a Linux Root Password

Popular Related Items »

3 Comments »

  1. Mounting .bin/.cue file « [fzn] said,

    October 20, 2009 @ 9:06

    [...] Props to: http://mediakey.dk/~cc/how-to-mount-bin-cue-image-files-in-linux/ [...]

  2. Evil Wizard said,

    January 23, 2010 @ 2:08

    does exactly what is says on the tin. helped me out thanks

  3. Jan Magne said,

    September 1, 2010 @ 14:37

    That was a lot… :o )

    I’ve tryed out this:
    sudo apt-get furiusisomount

    and it works like a charm…

    regards

RSS feed for comments on this post · TrackBack URI

Leave a Comment