We Recommend

bash Cookbook: Solutions and Examples for bash Users bash Cookbook: Solutions and Examples for bash Users
bash Cookbook teaches shell scripting the way Unix masters practice the craft. It presents a variety of recipes and tricks for all levels of shell programmers so that anyone can become a proficient user of the most common Unix shell -- the bash shell -- and cygwin or other popular Unix emulation packages.


Posted By

yuconner on 08/04/06


Tagged

linux files commands


Versions (?)


Who likes this?

4 people have marked this snippet as a favorite

rolandog
yuconner
mauilion
alexxx


How to mount iso/nrg/mdf image files and how to convert between formats


Published in: Bash 


For bin iso you also need cdemu To convert between formats check: mdf2iso, nrg2iso and ccd2iso

  1. # ISO
  2. mount -t iso9660 -o loop,user file.iso /path/mount_directory
  3.  
  4. # MDF
  5. mount imagen.mdf /path/mount_directory -o loop=/dev/loop0
  6.  
  7. # NRG
  8. mount -o loop,offset=307200 imagen.nrg /path/mount_directory
  9.  
  10. #nrg2iso example
  11. nrg2iso source.nrg destiny.iso

Report this snippet 

You need to login to post a comment.