Skip to content

Instantly share code, notes, and snippets.

@warmwaffles
Created April 21, 2018 00:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save warmwaffles/d16e413b099070480c7ecbfae806a5c8 to your computer and use it in GitHub Desktop.
Save warmwaffles/d16e413b099070480c7ecbfae806a5c8 to your computer and use it in GitHub Desktop.

I do know that it’s really easy to convert them into an ISO file, and then mount the ISO in debian based linux.

sudo apt-get install bchunk

The syntax from bchunk is as follows:

bchunk [-v] [-p] [-r] [-w] [-s]

So if i wanted to convert image,bin and image.cue into image.iso, I’d run the command: bchunk image.bin image.cue image.iso

Then to mount the ISO in linux you run the command:

mount -o loop -t iso9660 image.iso /mnt/image

Where image.iso is the iso is the image that you want to mount and /mnt/image is the mount directory.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment