Perfect! Thanks!
<>
On Wed, 2003-03-05 at 09:20, Rigler, S C (Steve) wrote:
> One way I've done it is to use the loop device.
>
> losetup /dev/loop0 /path/to/file
> mount /dev/loop0 /mountpoint
>
> When you're done with the image:
> umount /mountpoint
> losetup -d /dev/loop0
>
> -Steve
--
* Joe Polk
> I've created an .ISO of a cd but I've decided that I'd really like to
> dump it's contents to a directory. Is this possible with dd? Or some
> other utility?
As root:
mount myisofile.iso /mnt -o loop
Then you find your iso file system at /mnt.
cp -a /mnt /mydirectory
umoun
One way I've done it is to use the loop device.
losetup /dev/loop0 /path/to/file
mount /dev/loop0 /mountpoint
When you're done with the image:
umount /mountpoint
losetup -d /dev/loop0
-Steve
-Original Message-
From: Joe Polk [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 05, 2003 8:16
mount -o loop /path/to/cd.iso /mnt/somedir
On Wed, 2003-03-05 at 09:15, Joe Polk wrote:
I've created an .ISO of a cd but I've decided that I'd really like to
dump it's contents to a directory. Is this possible with dd? Or some
other utility?
<>