From owner-freebsd-questions@FreeBSD.ORG Sat Oct 20 18:37:07 2007 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 7C06D16A418 for ; Sat, 20 Oct 2007 18:37:07 +0000 (UTC) (envelope-from bruce@cran.org.uk) Received: from muon.bluestop.org (muon.bluestop.org [IPv6:2001:41c8:1:548a::2]) by mx1.freebsd.org (Postfix) with ESMTP id 472C913C468 for ; Sat, 20 Oct 2007 18:37:07 +0000 (UTC) (envelope-from bruce@cran.org.uk) Received: from muon.draftnet (unknown [IPv6:2a01:348:10f:1::5]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by muon.bluestop.org (Postfix) with ESMTP id 6336730180; Sat, 20 Oct 2007 19:37:06 +0100 (BST) Message-ID: <471A4AB5.7090502@cran.org.uk> Date: Sat, 20 Oct 2007 19:36:37 +0100 From: Bruce Cran User-Agent: Thunderbird 2.0.0.6 (X11/20070809) MIME-Version: 1.0 To: "Aryeh M. Friedman" References: <4719FB09.4080404@gmail.com> In-Reply-To: <4719FB09.4080404@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: mounting a uif dvd image 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: Sat, 20 Oct 2007 18:37:07 -0000 Aryeh M. Friedman wrote: > I have a uif dvd image that I want to mount how do I do this (or convert > to ISO). You can do this by using mdconfig and mount_udf (which is called by 'mount'). First, create a md device: mdconfig -a -t vnode -f /path/to/dvd_image This will create a /dev/mdX device, which you can then mount with: mount -t udf /dev/mdX /path/to/mount/dir -- Bruce Cran