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:
- Migrate existing Ext3 filesystems to Ext4
- How to Mount a Remote Filesystem Using SSH and sshfs
- Howto: Resize Xen Loop Disk Image
- Linux I/O Redirection
- Rethinking the GUI (Graphical User Interface) and the CLI (Command Line Interface)
- What is the coolest thing you can do using Linux that you can’t do with Windows or on a Mac?
- dos2unix on Ubuntu and Debian
- Linux Howto: Find the most recently changed files (recursively)
- Linux Job Market Trends: Galloping Forward
- Howto Recover a Linux Root Password
Popular Related Items »
Incoming search terms
- ubuntu mount bin
- mount bin ubuntu
- mount bin linux
- linux mount cue
- mount cue ubuntu
- linux mount bin cue
- linux mount bin
- mount bin
- ubuntu mount bin cue
- mount bin cue ubuntu
- bin cue linux
- mount cue
- mount bin cue
- mount bin image
- linux mount bin image
- how to mount bin ubuntu
- mount bin cue linux
- ubuntu mount cue
- how to mount bin files
- ubuntu mount bin image
- mount bin files ubuntu
- bin cue ubuntu
- mount bin image ubuntu
- cue linux
- mount cue linux
- bin image linux
- how to mount cue
- mount cue image
- mount cue debian
- mount cue file linux
- rhel mount cue/bin
- bin cue
- linux bin image
- fedora mount bin
- ubuntu bin cue
- linux mount cue bin
- ubuntu how to mount bin
- debian bin cue
- open cue linux
- mount bin debian
- cue image
- fedora 11 mounting bin image
- mount bin image linux
- ubuntu mount bin file
- freebsd mount bin image

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/ [...]
Evil Wizard said,
January 23, 2010 @ 2:08
does exactly what is says on the tin. helped me out thanks
Jan Magne said,
September 1, 2010 @ 14:37
That was a lot…
)
I’ve tryed out this:
sudo apt-get furiusisomount
and it works like a charm…
regards