From owner-freebsd-stable@freebsd.org Fri Jul 14 19:11:26 2017 Return-Path: Delivered-To: freebsd-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 87384DAA2E9 for ; Fri, 14 Jul 2017 19:11:26 +0000 (UTC) (envelope-from warlock@phouka.net) Received: from phouka1.phouka.net (phouka1.phouka.net [107.170.196.116]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "phouka.net", Issuer "Go Daddy Secure Certificate Authority - G2" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 0F68E7247F for ; Fri, 14 Jul 2017 19:11:25 +0000 (UTC) (envelope-from warlock@phouka.net) Received: from phouka1 (localhost [127.0.0.1]) by phouka1 (8.15.2/8.15.2) with ESMTPS id v6EGebvt037233 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 14 Jul 2017 09:40:37 -0700 (PDT) (envelope-from warlock@phouka.net) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=phouka.net; s=phouka1; t=1500050437; bh=mGbk26nvoCrtRwG4FwvSUVmhY9ng5cKrhXH24wzs4hk=; h=Date:From:To:Subject:In-Reply-To; b=WHYNRohavdk8rl6MNlOSsAhVQs1CngiF2Ui+6SHZQdV7a9QVl40nixP7SWj2Lq5rb RB6pGJt5gc9nRApL+ZvzIMsBefIMCURZDZPT6bvY8EkXhLTzYKpS+TQk5Pobj8tPxI ezE1DP+o9Of8cEu9CU/UvtlP6Fkz4uhXL7hVJ7OU= Received: (from warlock@localhost) by phouka1 (8.15.2/8.15.2/Submit) id v6EGebLm037232; Fri, 14 Jul 2017 09:40:37 -0700 (PDT) (envelope-from warlock) Date: Fri, 14 Jul 2017 09:40:37 -0700 (PDT) From: John Kennedy Message-Id: <201707141640.v6EGebLm037232@phouka1> To: emz@norma.perm.ru, freebsd-stable@freebsd.org Subject: Re: mdconfig and UDF In-Reply-To: X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jul 2017 19:11:26 -0000 On Fri, Jul 14, 2017 at 02:31:15PM +0500, Eugene M. Zheganin wrote: > Is there any chance to mount UDF filesystem under FreeBSD with mdconfig > and ISO image ? Mount -t cd9660 /dev/md0 /mnt/cdrom gives me the > readme.txt with "This is UDF, you idiot" and mount -t udf /dev/md0 > /mnt/cdrom gives me > > # mount -t udf /dev/md0 cdrom > mount_udf: /dev/md0: Invalid argument If I make an ISO like this (currently under 11.1-RC3): mkisofs -R -J -joliet-long -udf -iso-level 3 -o /path/to/test.iso /source/files/dir I can mount it like this via md: mdconfig -a -t vnode -f /path/to/test.iso -u 0 mount -t udf -o ro /dev/md0 /mnt When I burn it to a physical disk, I just mount it like this: mount -t udf -o ro /dev/cd0 /mnt