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

VN:F [1.8.5_1061]
Rating: 0.0/10 (0 votes cast)

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. What is the coolest thing you can do using Linux that you can’t do with Windows or on a Mac?
  6. Linux Howto: Find the most recently changed files (recursively)
  7. Rethinking the GUI (Graphical User Interface) and the CLI (Command Line Interface)
  8. dos2unix on Ubuntu and Debian
  9. Howto Recover a Linux Root Password
  10. Monitor Configuration Files

Popular Related Items »

2 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

    UN:F [1.8.5_1061]
    Rating: 0.0/5 (0 votes cast)
    UN:F [1.8.5_1061]
    Rating: 0 (from 0 votes)

RSS feed for comments on this post · TrackBack URI

Leave a Comment