Howto Convert a .nrg (Nero) file to a .iso file in Debian
Posted by Admin on May 17th, 2007
If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!
Install nrg2iso in Debian
#apt-get install nrg2iso
Using nrg2iso
Usage
nrg2iso [nrg-file] [iso-file]
Example
nrg2iso image.nrg image.iso
Now you can burn your iso with your preferred linux burning app.


August 3rd, 2007 at 1:08 am
Stupid. Try this:
~$ dd if=image.nrg of=image.iso bs=100k skip=3
Is this really a site for DEBIAN folk?? With tips like that I doubt it.
May 10th, 2008 at 6:04 pm
thank you
October 14th, 2009 at 9:55 am
No no… NRG files DO NOT have a 300kb header. That dd command won’t work. you would want something more like this:
dd ibs=2048 count=[filesize-156] if=image.nrg of=image.iso