RE: ISO files

2003-03-05 Thread Joe Polk
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 --

Re: ISO files

2003-03-05 Thread Jon Haugsand
* 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

RE: ISO files

2003-03-05 Thread Rigler, S C (Steve)
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

Re: ISO files

2003-03-05 Thread Adam Voigt
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? <>