Mounting / Extracting .bin and .cue Files In Ubuntu

  1. Install bchunk which will conert the bin and cue file to an iso
    sudo apt-get install bchunk
  2. Convert the files to iso using the following syntax:
    bchunk [image.bin] [image.cue] [output name]
    Where image.bin is the .bin file, image.cue is the .cue file and the output name is the iso file name which will be generated. If multiple iso are required a nn will be appended e.g myImage01.iso
    Example command:
    bchunk ubuntu.bin ubuntu.cue ubuntu
  3. Mount the iso files from the last step. It will appear as if it was a CD or an attached drive:
    sudo mount -o loop output name.iso /media/cdrom
    The above will mount the image to the cdrom directory.
  4. When done unmount the drive:
    sudo umount /media/cdrom

Extract CUE/BIN files

About Danny

I.T software professional always studying and applying the knowledge gained and one way of doing this is to blog. Danny also has participates in a part time project called Energy@Home [http://code.google.com/p/energyathome/] for monitoring energy usage on a premise. Dedicated to I.T since studying pure Information Technology since the age of 16, Danny Tsang working in the field that he has aimed for since leaving school. View all posts by Danny → This entry was posted in Linux, Software and tagged , , , , . Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *.

All comments must go through an approval and anti-spam process before appearing on the website. Please be patience and do not re-submit your comment if it does not appear.

This site uses Akismet to reduce spam. Learn how your comment data is processed.