Re: Utility to extract iso files without burning

2008-10-05 Thread Edwin Groothuis
Use tar. Simple FreeBSD tar, it's good for everything. -- Edwin Groothuis Website: http://www.mavetju.org/ [EMAIL PROTECTED] Weblog: http://www.mavetju.org/weblog/ ___ freebsd-questions@freebsd.org mailing list

Utility to extract iso files without burning

2008-10-03 Thread Warren Liddell
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 ___ freebsd-questions@freebsd.org mailing list

Re: Utility to extract iso files without burning

2008-10-03 Thread Valentin Bud
Hello Warren, On Fri, Oct 3, 2008 at 12:28 PM, Warren Liddell [EMAIL PROTECTED] 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 From the man page of mdconfig(8): To mount an ISO

Re: Utility to extract iso files without burning

2008-10-03 Thread Vincent Hoffman
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

Re: Utility to extract iso files without burning

2008-10-03 Thread Glyn Millington
Warren Liddell [EMAIL PROTECTED] writes: 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 well, you can mount it and then search around inside .. mount_cd9660 -o ro /dev/`mdconfig -a -t

Re: Utility to extract iso files without burning

2008-10-03 Thread Manolis Kiagias
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 You can mount an iso and copy files from it. First create a memory disk device to contain the file system: mdconfig -a

Re: Utility to extract iso files without burning

2008-10-03 Thread Patrick Lamaizière
Le Fri, 3 Oct 2008 20:28:44 +1000, Warren Liddell [EMAIL PROTECTED] a écrit : 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 I never tried it but bsdtar is able to extract an iso image. tar creates and

Re: Utility to extract iso files without burning

2008-10-03 Thread Wojciech Puchar
mdconfig -a -t vnode -f isofile mount_cd9660 /dev/md0 /somemountpoint On Fri, 3 Oct 2008, 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