udf.txt 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. *
  2. * Documentation/filesystems/udf.txt
  3. *
  4. UDF Filesystem version 0.9.8.1
  5. If you encounter problems with reading UDF discs using this driver,
  6. please report them to linux_udf@hpesjro.fc.hp.com, which is the
  7. developer's list.
  8. Write support requires a block driver which supports writing. Currently
  9. dvd+rw drives and media support true random sector writes, and so a udf
  10. filesystem on such devices can be directly mounted read/write. CD-RW
  11. media however, does not support this. Instead the media can be formatted
  12. for packet mode using the utility cdrwtool, then the pktcdvd driver can
  13. be bound to the underlying cd device to provide the required buffering
  14. and read-modify-write cycles to allow the filesystem random sector writes
  15. while providing the hardware with only full packet writes. While not
  16. required for dvd+rw media, use of the pktcdvd driver often enhances
  17. performance due to very poor read-modify-write support supplied internally
  18. by drive firmware.
  19. -------------------------------------------------------------------------------
  20. The following mount options are supported:
  21. gid= Set the default group.
  22. umask= Set the default umask.
  23. mode= Set the default file permissions.
  24. dmode= Set the default directory permissions.
  25. uid= Set the default user.
  26. bs= Set the block size.
  27. unhide Show otherwise hidden files.
  28. undelete Show deleted files in lists.
  29. adinicb Embed data in the inode (default)
  30. noadinicb Don't embed data in the inode
  31. shortad Use short ad's
  32. longad Use long ad's (default)
  33. nostrict Unset strict conformance
  34. iocharset= Set the NLS character set
  35. The uid= and gid= options need a bit more explaining. They will accept a
  36. decimal numeric value which will be used as the default ID for that mount.
  37. They will also accept the string "ignore" and "forget". For files on the disk
  38. that are owned by nobody ( -1 ), they will instead look as if they are owned
  39. by the default ID. The ignore option causes the default ID to override all
  40. IDs on the disk, not just -1. The forget option causes all IDs to be written
  41. to disk as -1, so when the media is later remounted, they will appear to be
  42. owned by whatever default ID it is mounted with at that time.
  43. For typical desktop use of removable media, you should set the ID to that
  44. of the interactively logged on user, and also specify both the forget and
  45. ignore options. This way the interactive user will always see the files
  46. on the disk as belonging to him.
  47. The remaining are for debugging and disaster recovery:
  48. novrs Skip volume sequence recognition
  49. The following expect a offset from 0.
  50. session= Set the CDROM session (default= last session)
  51. anchor= Override standard anchor location. (default= 256)
  52. volume= Override the VolumeDesc location. (unused)
  53. partition= Override the PartitionDesc location. (unused)
  54. lastblock= Set the last block of the filesystem/
  55. The following expect a offset from the partition root.
  56. fileset= Override the fileset block location. (unused)
  57. rootdir= Override the root directory location. (unused)
  58. WARNING: overriding the rootdir to a non-directory may
  59. yield highly unpredictable results.
  60. -------------------------------------------------------------------------------
  61. For the latest version and toolset see:
  62. http://linux-udf.sourceforge.net/
  63. Documentation on UDF and ECMA 167 is available FREE from:
  64. http://www.osta.org/
  65. http://www.ecma-international.org/
  66. Ben Fennema <bfennema@falcon.csc.calpoly.edu>