udf.txt 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. The current
  9. scsi and ide cdrom drivers do not support writing.
  10. -------------------------------------------------------------------------------
  11. The following mount options are supported:
  12. gid= Set the default group.
  13. umask= Set the default umask.
  14. uid= Set the default user.
  15. bs= Set the block size.
  16. unhide Show otherwise hidden files.
  17. undelete Show deleted files in lists.
  18. adinicb Embed data in the inode (default)
  19. noadinicb Don't embed data in the inode
  20. shortad Use short ad's
  21. longad Use long ad's (default)
  22. nostrict Unset strict conformance
  23. iocharset= Set the NLS character set
  24. The uid= and gid= options need a bit more explaining. They will accept a
  25. decimal numeric value which will be used as the default ID for that mount.
  26. They will also accept the string "ignore" and "forget". For files on the disk
  27. that are owned by nobody ( -1 ), they will instead look as if they are owned
  28. by the default ID. The ignore option causes the default ID to override all
  29. IDs on the disk, not just -1. The forget option causes all IDs to be written
  30. to disk as -1, so when the media is later remounted, they will appear to be
  31. owned by whatever default ID it is mounted with at that time.
  32. For typical desktop use of removable media, you should set the ID to that
  33. of the interactively logged on user, and also specify both the forget and
  34. ignore options. This way the interactive user will always see the files
  35. on the disk as belonging to him.
  36. The remaining are for debugging and disaster recovery:
  37. novrs Skip volume sequence recognition
  38. The following expect a offset from 0.
  39. session= Set the CDROM session (default= last session)
  40. anchor= Override standard anchor location. (default= 256)
  41. volume= Override the VolumeDesc location. (unused)
  42. partition= Override the PartitionDesc location. (unused)
  43. lastblock= Set the last block of the filesystem/
  44. The following expect a offset from the partition root.
  45. fileset= Override the fileset block location. (unused)
  46. rootdir= Override the root directory location. (unused)
  47. WARNING: overriding the rootdir to a non-directory may
  48. yield highly unpredictable results.
  49. -------------------------------------------------------------------------------
  50. For the latest version and toolset see:
  51. http://linux-udf.sourceforge.net/
  52. Documentation on UDF and ECMA 167 is available FREE from:
  53. http://www.osta.org/
  54. http://www.ecma-international.org/
  55. Ben Fennema <bfennema@falcon.csc.calpoly.edu>