From owner-freebsd-questions@FreeBSD.ORG Thu May 6 02:43:11 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45DB716A4CE for ; Thu, 6 May 2004 02:43:11 -0700 (PDT) Received: from highland.isltd.insignia.com (highland.isltd.insignia.com [195.74.141.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A4D943D48 for ; Thu, 6 May 2004 02:43:10 -0700 (PDT) (envelope-from subscriber@insignia.com) Received: from dailuaine.isltd.insignia.com (dailuaine.isltd.insignia.com [172.16.64.11])i469h93P058899 for ; Thu, 6 May 2004 10:43:09 +0100 (BST) (envelope-from subscriber@insignia.com) Received: from speyburn.isltd.insignia.com (speyburn [172.16.64.16]) i469h8gF041410 for ; Thu, 6 May 2004 10:43:09 +0100 (BST) (envelope-from subscriber@insignia.com) From: Jim Hatfield To: freebsd-questions@freebsd.org Date: Thu, 06 May 2004 10:45:29 +0100 Organization: Insignia Solutions Message-ID: <8i1k90lgsqfbp6f3bm0dcuk973be7a1oho@4ax.com> X-Mailer: Forte Agent 2.0/32.640 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Scanned-By: MIMEDefang 2.42 Subject: Max size of file on ISO filesystem? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 09:43:11 -0000 I used to think that ISO filesystems were limited to a maximum size of 2 Gb for each file, but now I'm not sure sure. mkisofs from sysutils/mkisofs will not accept files over 2 Gb but the one in syutils/mkisofs-devel will without a problem. So if you install mkisofs-devel you can then use growisofs to make a DVD with a file over 2 Gb on it. The fun starts when you try to read the DVD! On a 4.9 machine, doing a "ls -l" shows the file size as negative, presumably just the result of using a signed 32-bit quantity to hold the size in bytes. However a 5.1 machine generates an error, something like "value too large for data type". I presume this is coming from the iso9660 filesystem layer. So there seems to be a discrepancy between what the latest mkisofs and the latest iso9660 filesystem code regards as acceptable. Which is right?