From owner-freebsd-questions@FreeBSD.ORG Fri Apr 20 19:51:44 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 37D93106566C for ; Fri, 20 Apr 2012 19:51:44 +0000 (UTC) (envelope-from FreeBSD@shaneware.biz) Received: from ipmail05.adl6.internode.on.net (unknown [IPv6:2001:44b8:8060:ff02:300:1:6:5]) by mx1.freebsd.org (Postfix) with ESMTP id 717C68FC12 for ; Fri, 20 Apr 2012 19:51:43 +0000 (UTC) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AswEAPu8kU/LevdH/2dsb2JhbABEriSEHIIJAQEFODgJEAsOCgkTAQIPCQMCAQIBRQYNAQcBAYgKuyWRLQSIYZ1Vgnc Received: from ppp247-71.static.internode.on.net (HELO leader.local) ([203.122.247.71]) by ipmail05.adl6.internode.on.net with ESMTP; 21 Apr 2012 05:21:41 +0930 Message-ID: <4F91BDA3.1090903@ShaneWare.Biz> Date: Sat, 21 Apr 2012 05:18:51 +0930 From: Shane Ambler User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:10.0.3) Gecko/20120322 Thunderbird/10.0.3 MIME-Version: 1.0 To: Wojciech Puchar References: <4F902748.7050400@ShaneWare.Biz> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: blu ray recorders 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, 20 Apr 2012 19:51:44 -0000 On 21/04/2012 00:29, Wojciech Puchar wrote: >> dvd's. >> >> From the info I can see that cdrecord and growisofs list blu-ray in >> features. > > already found - growisofs (which i use regularly) do support blu ray > recording. so i will buy BD-recorder. > > > the problem is - FreeBSD seems not to support >4GB files on CD9660 > filesystem. mkisofs --iso-level 3 create it fine > > Even windoze can then see it properly, but FreeBSD shows multiple > files. > The mkisofs man page says iso/joliet/udf supports disk size up to 8TB and maximum single file up to 8TB with udf only up to 200GB single file. Personally I use the -UDF option to make an iso/udf hybrid as well as iso-level 3 and get a message that "files larger than 2GB found. These files will only be fully accessible if mounted with UDF" Just tested a disk now - on a dvd-r medium. One file of 4.3G and another of 29M If I mount_udf I see one file of 4.3G and one 29M. I find if I use mount_cd9660 I see two copies of the same file - showing as 4G each and one 29M. I don't see any difference using any of the options. -r--r--r-- 1 root wheel 4294965248 21 Apr 03:57 tester.file While that file size isn't a full 32 bit value it is close. My guess would be that the iso driver is still using a 32bit filesize df -h shows the cd9660 mounted size at 4.4G [leader:/] shane# mount_cd9660 /dev/cd0 /mnt/CD [leader:/] shane# ls -lah /mnt/CD/ total 8388612 dr-xr-xr-x 3 root wheel 2.0k 21 Apr 04:09 . drwxr-xr-x 4 root wheel 512B 6 Apr 15:40 .. -r--r--r-- 1 root wheel 29M 8 Apr 14:34 animation.mp4 -r--r--r-- 1 root wheel 4G 21 Apr 03:57 tester.file -r--r--r-- 1 root wheel 4G 21 Apr 03:57 tester.file [leader:/] shane# umount /mnt/CD/ [leader:/] shane# mount_udf /dev/cd0 /mnt/CD [leader:/] shane# ls -lah /mnt/CD/ total 4551764 dr-xr-xr-x 2 root wheel 2.0k 21 Apr 04:09 . drwxr-xr-x 4 root wheel 512B 6 Apr 15:40 .. -r--r--r-- 1 root wheel 29M 8 Apr 14:34 animation.mp4 -r--r--r-- 1 root wheel 4.3G 21 Apr 03:57 tester.file [leader:/] shane# umount /mnt/CD/ [leader:/] shane# uname -a FreeBSD leader.local 9.0-RELEASE FreeBSD 9.0-RELEASE #1: Wed Feb 15 16:03:18 CST 2012 root@:/usr/obj/usr/src/sys/GENERIC amd64