From owner-freebsd-fs@freebsd.org Fri Feb 10 18:46:41 2017 Return-Path: Delivered-To: freebsd-fs@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 4D851CD99EB for ; Fri, 10 Feb 2017 18:46:41 +0000 (UTC) (envelope-from fjwcash@gmail.com) Received: from mail-qk0-x22f.google.com (mail-qk0-x22f.google.com [IPv6:2607:f8b0:400d:c09::22f]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0F69F14EE for ; Fri, 10 Feb 2017 18:46:41 +0000 (UTC) (envelope-from fjwcash@gmail.com) Received: by mail-qk0-x22f.google.com with SMTP id u25so48545694qki.2 for ; Fri, 10 Feb 2017 10:46:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=iKpyIRH7VtZpS9JiqMoYDu8aHCz71/2eppUCp7fnfGk=; b=kYDOuzNvJdvTta0CISknnhybGFb/Hh5mOF69wKbMQ2evTDmZT0/3WP8X8QGNIe+zE9 1gmJkwAr4XfHP+4ATJBkWMNaSoP9XIgnAbeC7b2gEaaYwqCu0MTRXpcXBFSIEZ813iQn 2jfd0RaOcCqqKt8k8QxTQrjTQeeZwX31lEQXBfK5YYm/ZRV8kjZ2mYuomoa9/0YwG7Py qLUmIlBN/xY9yNjfeQnwkUUUHb5eV6/+TUFVFVUmpOVg79pZpc3UjAmBqPe/P+DvqX6C +aaeTJT9ytn4pSwgVao+x5k+IU4Jfrs/ovcC6HZrmlRuJ6EPakTV90ik4XHKaKbhtcqN Pb0Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=iKpyIRH7VtZpS9JiqMoYDu8aHCz71/2eppUCp7fnfGk=; b=s5fLCUpHytpO4tk6w8J79D4Z6ujrHgMHD7x1V6Rktw3oyYkj1jegPuqGid/B0YHnBf fpbT+9DTTWpgh4E4H30uavt6IChq/ZX5jjgSFU06d7gO1xgey44aOecH92rvKr5ysN62 /r9i0yz9YdmOzOkrI8XVSIorMOUu93LCfdfMW6sPIP+n9JPH5Cg3cIHDWp1LDAW+pMyR 6d5smAEsABga9gjfYTCtdFO1Gm2gLMI/ySJYHlJdOiyPdv4VRFAyL1iNBEa4D+txPgOp z9+z5RoyjSPi7lPpZYDEY1zGhGK0pYWsFG9IY4WVFGjUm4UQ6KppPOqWpgG71YCIn9KF 33uw== X-Gm-Message-State: AMke39ngamRDlRDH5vzjaWY2kCnjWSa4bCr9mSZgVNyQ39AWh2Zk/4KWmhMGEATE8fMJqombxplQtBKEzWp+Pg== X-Received: by 10.55.203.213 with SMTP id u82mr9129275qkl.10.1486752400183; Fri, 10 Feb 2017 10:46:40 -0800 (PST) MIME-Version: 1.0 Received: by 10.140.28.202 with HTTP; Fri, 10 Feb 2017 10:46:39 -0800 (PST) In-Reply-To: <7827d6b5-dc0f-21a9-873d-6356986485a5@holgerdanske.com> References: <20170210031741.3d4348f6.freebsd@edvax.de> <4b4145c4-1381-0b95-0e06-46affbb6d851@holgerdanske.com> <20170210101633.4d5da7df@ernst.home> <7827d6b5-dc0f-21a9-873d-6356986485a5@holgerdanske.com> From: Freddie Cash Date: Fri, 10 Feb 2017 10:46:39 -0800 Message-ID: Subject: Re: FreeBSD 11 and 4+ GB files on optical disc To: David Christensen Cc: FreeBSD Filesystems Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Feb 2017 18:46:41 -0000 # kldload udf # mount -t udf /dev/cd0 /mnt You RTFM'd the wrong M. ;) Pretty much every option can be loaded as a module at runtime nowadays. I found this by doing a simple: # ls /boot/kernel/*udf* There's also a mount_udf(8) man page to read through. There are some limitations to UDF in FreeBSD, though. It's not the latest version, and I don't think you can write to it (although it's been a long time since I've used UDF). But you should definitely be able to mount and read files from UDF-formatted DVDs. Maybe even Blu-Ray, although I've never attached a BD-ROM drive to a computer of any kind. -- Freddie Cash fjwcash@gmail.com