thedark Second Lieutenant
Joined: 30 Jul 2005
Posts: 1074
|
Posted: Sun Jul 31, 2005 10:22 am Post subject: Extracting particular file from Linux ISO (CD image) file af |
|
|
Under many situations you might need to get the single file/many files from Linux ISO file.
*** Under Linux ***
1) Mount ISO Disk image:
# mkdir /mnt/iso; mount –o loop /isos/disk1.iso /mnt/iso
2) Copy file1 from iso disk image to /tmp:
# cd /mnt/iso
# cp file1 /tmp
3) Copy foo.rpm from ISO disk image:
# cd /mnt/iso/RedHat/RPMS
# cp foo.rpm /tmp
*** Under Windows 9x/2000/NT Os ***
Windows did not provide such in built capability as provided by Linux. Luckly many third party software exist my favorite is Winimage http://www.winimage.com/. Download trial version (I’m sure you will love to registered this tiny utility later):
1) Install Winimage software
2) Just double click on Linux ISO file
3) Select the desired file and hit CTRL + X (or from Image menu select extract) |
|