[gentoo-user] Unpacking an ISO Image

2006-05-16 Thread Kris Kerwin
Hi folks,

Quick question. Is there any way that one can unpack an ISO image: 
extracting the data that is contained within it like a tarball, 
without having to burn it to a CD? I'm sure there's an option 
somewhere within either the mkisofs or cdrecord man pages, but I feel 
like I'm searching for a needle in a haystack.

Thanks in advance.

Kris
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Unpacking an ISO Image

2006-05-16 Thread Alexander Skwar
Kris Kerwin wrote:
 Hi folks,
 
 Quick question. Is there any way that one can unpack an ISO image: 

You mount it.

mount -o loop file.iso /some/path

Alexander Skwar
-- 
Dreams are free, but there's a small charge for alterations.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Unpacking an ISO Image

2006-05-16 Thread Gerhard Hoogterp
On Tuesday 16 May 2006 17:18, Kris Kerwin wrote:

 Quick question. Is there any way that one can unpack an ISO image:
 extracting the data that is contained within it like a tarball,
 without having to burn it to a CD? I'm sure there's an option
 somewhere within either the mkisofs or cdrecord man pages, but I feel
 like I'm searching for a needle in a haystack.

Mount and copy should be an option.. 
http://gentoo-wiki.com/TIP_Mounting_Iso_Files should help..

Gerhard


-- 
Ithaka photography, http://ithaka.mine.nu/
-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] Unpacking an ISO Image

2006-05-16 Thread Lee Packham
You can do:

mount -o loop /location/of/iso/file.iso /mnt/cdrom

That will mount it on the file system and allow you to grab stuff out.
You might have to specify a filesystem type, can't remember.

If that's the case:

mount -t iso9660 -o loop /location/of/iso/file.iso /mnt/cdrom

Lee.

-Original Message-
From: Kris Kerwin [mailto:[EMAIL PROTECTED] 
Sent: 16 May 2006 16:19
To: gentoo-user@lists.gentoo.org
Subject: [gentoo-user] Unpacking an ISO Image

Hi folks,

Quick question. Is there any way that one can unpack an ISO image: 
extracting the data that is contained within it like a tarball, 
without having to burn it to a CD? I'm sure there's an option 
somewhere within either the mkisofs or cdrecord man pages, but I feel 
like I'm searching for a needle in a haystack.

Thanks in advance.

Kris
-- 
gentoo-user@gentoo.org mailing list


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Unpacking an ISO Image

2006-05-16 Thread Boris Fersing

2006/5/16, Kris Kerwin [EMAIL PROTECTED]:

Hi folks,

Quick question. Is there any way that one can unpack an ISO image:
extracting the data that is contained within it like a tarball,
without having to burn it to a CD? I'm sure there's an option
somewhere within either the mkisofs or cdrecord man pages, but I feel
like I'm searching for a needle in a haystack.

Thanks in advance.


Hi,
try :

mount myfile.iso /tmp -o loop

Boris.


Kris
--
gentoo-user@gentoo.org mailing list





--
Quiconque me parle de Dieu en veut à ma bourse ou à ma liberté.

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Unpacking an ISO Image

2006-05-16 Thread Michael Sullivan
On Tue, 2006-05-16 at 10:18 -0500, Kris Kerwin wrote:
 Hi folks,
 
 Quick question. Is there any way that one can unpack an ISO image: 
 extracting the data that is contained within it like a tarball, 
 without having to burn it to a CD? I'm sure there's an option 
 somewhere within either the mkisofs or cdrecord man pages, but I feel 
 like I'm searching for a needle in a haystack.
 
 Thanks in advance.
 
 Kris

I might have the syntax wrong, since I haven't done this in awhile, but
I think it goes like this:

mount -o loop someImage.iso someDirectory

This will allow you to mount the ISO and browse the files there as if
they were actually on a CD (or extraced on your hard drive).  The files
are read-only while they are inside the ISO image...

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Unpacking an ISO Image

2006-05-16 Thread John J. Foster

Kris Kerwin wrote:

Hi folks,

Quick question. Is there any way that one can unpack an ISO image: 
extracting the data that is contained within it like a tarball, 
without having to burn it to a CD? I'm sure there's an option 
somewhere within either the mkisofs or cdrecord man pages, but I feel 
like I'm searching for a needle in a haystack.



Maybe this will help.

http://www.linuxhelp.net/isos/

festus
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Unpacking an ISO Image

2006-05-16 Thread John Jolet

Kris Kerwin wrote:


Hi folks,

Quick question. Is there any way that one can unpack an ISO image: 
extracting the data that is contained within it like a tarball, 
without having to burn it to a CD? I'm sure there's an option 
somewhere within either the mkisofs or cdrecord man pages, but I feel 
like I'm searching for a needle in a haystack.


Thanks in advance.

Kris
 

mount as loopback mount -o loopback i think.  but you have to have 
enabled the loopback fs in the kernel.

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Unpacking an ISO Image

2006-05-16 Thread Rumen Yotov
On Tue, 2006-05-16 at 10:18 -0500, Kris Kerwin wrote:
 Hi folks,
 
 Quick question. Is there any way that one can unpack an ISO image: 
 extracting the data that is contained within it like a tarball, 
 without having to burn it to a CD? I'm sure there's an option 
 somewhere within either the mkisofs or cdrecord man pages, but I feel 
 like I'm searching for a needle in a haystack.
 
 Thanks in advance.
 
 Kris
Hi,
Use mount -t iso9660 ISO-file-name.iso /mnt/cdrom -o loop
Then in /mnt/cdrom you'll have ISO-file contents. man mount
HTH.Rumen


smime.p7s
Description: S/MIME cryptographic signature


Re: [gentoo-user] Unpacking an ISO Image

2006-05-16 Thread Steven Ringwald

Kris Kerwin wrote:

Hi folks,

Quick question. Is there any way that one can unpack an ISO image: 
extracting the data that is contained within it like a tarball, 
without having to burn it to a CD? I'm sure there's an option 
somewhere within either the mkisofs or cdrecord man pages, but I feel 
like I'm searching for a needle in a haystack.


Thanks in advance.

Kris
  

mount-tiso9660  -oloop  foobar.iso /mnt/cdrom


--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Unpacking an ISO Image

2006-05-16 Thread Alexander Skwar

Lee Packham wrote:


mount -o loop /location/of/iso/file.iso /mnt/cdrom

That will mount it on the file system and allow you to grab stuff out.
You might have to specify a filesystem type, can't remember.


No, you don't HAVE to. You can, but you're not forced to.

But that's actually nothing special - it's perfectly fine to
mount normal filesystems without specifiyng the filesystemtype.

Alexander Skwar
--
You may already be a loser.
-- Form letter received by Rodney Dangerfield.
--
gentoo-user@gentoo.org mailing list