-
.nrg files HELP!
I have got serveral traing videos in the form of .nrg files.
Although I know this is an image file
1.How do I extract the files from the image
2. If you cannot extract the files form an .nrg image then how do I burn it to a disk.
I have used magic ISO and Power ISO although I do not seem to be getting any where??????
any help would be great thanks all
-
Re: .nrg files HELP!
Install daemon tools....mount the image and then copy them out of the virtual CD drive :)
nrg is the Nero imago format so you'd probably need nero to write it to a disk, i've not heard of any other CD/DVD burning software that will work with nrg files.
-
Re: .nrg files HELP!
Just as the man said. Use daemon tools.
You can use something like Alcohol 120% to burn nrg images if needed.
-
Re: .nrg files HELP!
I have use power iso to open nrg,, nrg is the Nero Image format so any Nero software will burn it
-
Re: .nrg files HELP!
What a strange format to send out training video's in !
an nrg file is just an iso9660 with an additional 300 bytes of 'nero data' at the beginning. its simple to strip that out with dd
Code:
dd if=image.nrg of=image.iso skip=300 bs=1024
no need for extra software, just use your *nix partition.
-
Re: .nrg files HELP!
Well that's bloody useful :D
Thanks for that one :)