Date: Fri, 03 Oct 2008 12:01:49 +0100 From: Vincent Hoffman <vince@unsane.co.uk> To: Warren Liddell <shinjii@maydias.com> Cc: freebsd-questions@freebsd.org Subject: Re: Utility to extract iso files without burning Message-ID: <48E5FB9D.1020608@unsane.co.uk> In-Reply-To: <200810032028.45073.shinjii@maydias.com> References: <200810032028.45073.shinjii@maydias.com>
next in thread | previous in thread | raw e-mail | index | archive | help
Warren Liddell wrote: > Im looking for a GUI or command line that will allow me to extract information > within an ISO file... im using FreeBSD 7.1-PRERELEASE KDE4.1.1 AMD64 > Easiest way normally would be to mount the image and use the filesystem. assuming you are not root and have sudo installed. sudo mdconfig -a -t vnode -f filename.iso -u 7 (this assumes you dont already have an md7 device, not specifying -u will automatically take the next available.) then sudo sudo mount -t cd9660 /dev/md7 /path/to/mountpoint once you are done, umount it and sudo mdconfig -d -u 7 man mdconfig has more info and another example. Vince > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" >
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?48E5FB9D.1020608>