76 lines · plain
1.. SPDX-License-Identifier: GPL-2.02 3===============4UDF file system5===============6 7If you encounter problems with reading UDF discs using this driver,8please report them according to MAINTAINERS file.9 10Write support requires a block driver which supports writing. Currently11dvd+rw drives and media support true random sector writes, and so a udf12filesystem on such devices can be directly mounted read/write. CD-RW13media however, does not support this. Instead the media can be formatted14for packet mode using the utility cdrwtool, then the pktcdvd driver can15be bound to the underlying cd device to provide the required buffering16and read-modify-write cycles to allow the filesystem random sector writes17while providing the hardware with only full packet writes. While not18required for dvd+rw media, use of the pktcdvd driver often enhances19performance due to very poor read-modify-write support supplied internally20by drive firmware.21 22-------------------------------------------------------------------------------23 24The following mount options are supported:25 26 =========== ======================================27 gid= Set the default group.28 umask= Set the default umask.29 mode= Set the default file permissions.30 dmode= Set the default directory permissions.31 uid= Set the default user.32 bs= Set the block size.33 unhide Show otherwise hidden files.34 undelete Show deleted files in lists.35 adinicb Embed data in the inode (default)36 noadinicb Don't embed data in the inode37 shortad Use short ad's38 longad Use long ad's (default)39 nostrict Unset strict conformance40 iocharset= Set the NLS character set41 =========== ======================================42 43The uid= and gid= options need a bit more explaining. They will accept a44decimal numeric value and all inodes on that mount will then appear as45belonging to that uid and gid. Mount options also accept the string "forget".46The forget option causes all IDs to be written to disk as -1 which is a way47of UDF standard to indicate that IDs are not supported for these files .48 49For typical desktop use of removable media, you should set the ID to that of50the interactively logged on user, and also specify the forget option. This way51the interactive user will always see the files on the disk as belonging to him.52 53The remaining are for debugging and disaster recovery:54 55 ===== ================================56 novrs Skip volume sequence recognition57 ===== ================================58 59The following expect a offset from 0.60 61 ========== =================================================62 session= Set the CDROM session (default= last session)63 anchor= Override standard anchor location. (default= 256)64 lastblock= Set the last block of the filesystem/65 ========== =================================================66 67-------------------------------------------------------------------------------68 69 70For the latest version and toolset see:71 https://github.com/pali/udftools72 73Documentation on UDF and ECMA 167 is available FREE from:74 - http://www.osta.org/75 - https://www.ecma-international.org/76