From owner-freebsd-questions@FreeBSD.ORG Fri Oct 3 11:01:52 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5806B10656A2 for ; Fri, 3 Oct 2008 11:01:52 +0000 (UTC) (envelope-from vince@unsane.co.uk) Received: from unsane.co.uk (unsane-pt.tunnel.tserv5.lon1.ipv6.he.net [IPv6:2001:470:1f08:110::2]) by mx1.freebsd.org (Postfix) with ESMTP id D4B8D8FC12 for ; Fri, 3 Oct 2008 11:01:51 +0000 (UTC) (envelope-from vince@unsane.co.uk) Received: from vhoffman.lon.namesco.net (150.117-84-212.staticip.namesco.net [212.84.117.150]) (authenticated bits=0) by unsane.co.uk (8.14.0/8.14.0) with ESMTP id m93B2XSj097793 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 3 Oct 2008 12:02:34 +0100 (BST) (envelope-from vince@unsane.co.uk) Message-ID: <48E5FB9D.1020608@unsane.co.uk> Date: Fri, 03 Oct 2008 12:01:49 +0100 From: Vincent Hoffman User-Agent: Thunderbird 2.0.0.17 (Macintosh/20080914) MIME-Version: 1.0 To: Warren Liddell References: <200810032028.45073.shinjii@maydias.com> In-Reply-To: <200810032028.45073.shinjii@maydias.com> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Utility to extract iso files without burning X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Oct 2008 11:01:52 -0000 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" >