How to convert nero image to iso image and extract iso image
Introduction –
nrg2iso is handy tool to convert Nero Image to ISO image
* How to install nrg2iso on Ubuntu Linux –
root@arun:~# apt-get install nrg2iso
root@arun:~/oracle-setup# nrg2iso -h
Nrg2Iso v0.4 by G. Kokanosky
released under the GNU GPL v2 or later
Usage :
nrg2iso image.nrg image.iso
–version display version number
–help display this notice
root@arun:~/oracle-setup#
* How to use it ? –
root@arun:~/oracle-setup# ls
ora92linux.nrg
root@arun:~/oracle-setup#
root@arun:~/oracle-setup# nrg2iso ora92linux.nrg ora92linux.iso
|==============================>[100%]
ora92linux.iso written : 680659100 bytes
root@arun:~/oracle-setup#
root@arun:~/oracle-setup# ls *.iso
ora92linux.iso
root@arun:~/oracle-setup#
* Now ISO image is ready, we can mount ISO image to extract the data as shown below….
root@arun:~/oracle-setup# mount -o loop ora92linux.iso /tmp/mount-iso/
root@arun:~/oracle-setup#
root@arun:~/oracle-setup# cd /tmp/mount-iso/
root@arun:/tmp/mount-iso# ls
doc index.htm install lgto response runInstaller stage
root@arun:/tmp/mount-iso#
root@arun:/tmp/mount-iso# ls
doc index.htm install lgto response runInstaller stage
* Enjoy!! – you can copy the extracted data where ever you want!!
root@arun:/tmp/mount-iso# cp -fr * /root/oracle-setup/oracle-1/
root@arun:/tmp/mount-iso#
root@arun:~/oracle-setup# mount
/root/oracle-setup/ora92linux2.iso on /tmp/mount-iso type iso9660 (rw,loop=/dev/loop0)
root@arun:~/oracle-setup#
* Un-mount to ISO image –
root@arun:/tmp/mount-iso# cd /
root@arun:/# umount /tmp/mount-iso/
root@arun:/#
Thank you,
Arun Bagul