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


/ Published in: Bash
Save to your folder(s)

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


Copy this code and paste it in your HTML
  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


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.