I need to extract the content of a Nero .NRG image. What can I use since I do not want to burn it.
-
sudo mount -t iso9660 yourfile.nrg /mnt/ – Michał Rugbuś Mar 28 '16 at 14:41
-
2NRG is not an ISO format. – Luis Alvarado Mar 28 '16 at 14:57
5 Answers
You can convert it to iso via nrg2iso
sudo apt-get install nrg2iso
nrg2iso source.nrg desitination.iso
or you can try nero for linux
- 17,221
- 18
- 74
- 116
-
At least it helps in extracting afterwards the information. Thanks Aboobacker. – Luis Alvarado Feb 25 '12 at 16:02
-
-
i'm using ubuntu 12.04 too, but it doesn't work for me. when use this command, says: `It seems that SOURCE.nrg is already an ISO 9660 image` [Aborting conversion] **I'm sure it's .nrg file because i get it from nero in Windows7** – Netmoon Oct 09 '12 at 08:04
-
-
Unfortunately nowadays nrg2iso does not work - converted iso image is empty when mounted via mount and makes Virtualbox display and error. Still looking for another solution. Perhaps my NRG images are too new for the tool? – Pawel Debski Mar 31 '18 at 21:36
One solution is to convert NRG to ISO using nrg2iso program. Another solution is to mount NRG using acetoneiso2. Both programs are present in repositories.
- 213
- 3
- 13
-
I first tried acetoneiso2 but it gave me an error for the nrg file. I used it first because it said that it supported nrg files. In any case I have just converted the nrg to iso. Thanks for the suggestion sindikat. – Luis Alvarado Feb 25 '12 at 16:04
I have a number of nrg images that I need to either mount in Ubuntu or have mounted by guest machines in Virtualbox.
Current version of nrg2iso is 4.4 from 2004 and it was not able to convert these images to iso properly - resulting image was either empty or caused Virtualbox to display errors.
After reviewing different options I installed gCDEmu - the most acclaimed software for mounting CD images. Now I have image mounted and readable.
Unfortunately Virtualbox is not able to attach guest machine's virtual CD to the virtual one created by CDEmu. Therefore I used Brasero to copy CD to image to create iso file. This way I am able to mount the image directly in Virtualbox.
As iso format does not have any built-in checks I have also created hash sums of the created file using GtkHash so in future I am sure the file was not changed in any way.
- 2,694
- 8
- 28
- 40
-
gCDEmu is brilliant ! And there is even a PPA for Ubuntu. I've used it to open music CD images in NRG format from 15+ years ago. Playing them in Rhythmbox riigt now :D https://cdemu.sourceforge.io/project – Bazz Aug 23 '22 at 11:42
if the message is displayed at the command nrg2iso file.nrg file.iso:
file.nrg is already an ISO 9660 image [ Aborting conversion ]
use
sudo mount -t iso9660 /mnt
worked for me
- 193,181
- 53
- 473
- 722
- 11
- 1
-
1For this VERY specific case, it means that your ISO was renamed to NRG because the file is actually an ISO9660, which means, you would logically rename it back to ISO and proceed on using it like a normal ISO file. Now, for an NRG (Which is specific to Nero), it would not be ISO compliant. – Luis Alvarado Mar 28 '16 at 15:43