From owner-freebsd-questions@FreeBSD.ORG Tue Feb 21 18:17:44 2012 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 80C8F106564A for ; Tue, 21 Feb 2012 18:17:44 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from plane.gmane.org (plane.gmane.org [80.91.229.3]) by mx1.freebsd.org (Postfix) with ESMTP id 3B1138FC20 for ; Tue, 21 Feb 2012 18:17:44 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1RzuHX-00087v-49 for freebsd-questions@freebsd.org; Tue, 21 Feb 2012 19:17:43 +0100 Received: from np-19-75.prenet.pl ([np-19-75.prenet.pl]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 21 Feb 2012 19:17:43 +0100 Received: from jb.1234abcd by np-19-75.prenet.pl with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 21 Feb 2012 19:17:43 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: jb Date: Tue, 21 Feb 2012 18:17:28 +0000 (UTC) Lines: 43 Message-ID: References: <201045320adcd61af12f6d6df2ffdd4e@ramattack.net> <006b01ccf0c3$0263b6c0$072b2440$@fisglobal.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: sea.gmane.org User-Agent: Loom/3.14 (http://gmane.org/) X-Loom-IP: 79.139.19.75 (Mozilla/5.0 (X11; FreeBSD i386; rv:9.0.1) Gecko/20100101 Firefox/9.0.1) Subject: Re: New iso format on 9.0 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: Tue, 21 Feb 2012 18:17:44 -0000 Devin Teske fisglobal.com> writes: > > > > -----Original Message----- > > From: owner-freebsd-questions freebsd.org [mailto:owner-freebsd- > > questions freebsd.org] On Behalf Of jb > > Sent: Tuesday, February 21, 2012 9:53 AM > > To: freebsd-questions freebsd.org > > Subject: Re: New iso format on 9.0 > > > > ramattack.net> writes: > > > > > > > > Good morning, > > > > > > Previously I was doing a : 'tar -C /expert/netboot/freebsd8 -pxvf > > > 8.0-RELEASE-amd64-disc1.iso' for extracting iso files. > > > ... > > > > There is a simple way to access contents of an iso file: > > # mount -o loop some.iso /mnt > > > > That works on FreeBSD? I commonly use that (daily even) on Linux, but was not > aware that would work on FreeBSD. > ... Well, old habits never die :-) But, actually, why not on FreeBSD ? Btw, mdconfig(8) ... To create an md(4) device out of an ISO 9660 CD image file (-a and -t vnode are implied), using the first available md(4) device, and then mount the new memory disk: mount -t cd9660 /dev/`mdconfig -f cdimage.iso` /mnt ... jb