hfsplus.txt 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. Macintosh HFSPlus Filesystem for Linux
  2. ======================================
  3. HFSPlus is a filesystem first introduced in MacOS 8.1.
  4. HFSPlus has several extensions to HFS, including 32-bit allocation
  5. blocks, 255-character unicode filenames, and file sizes of 2^63 bytes.
  6. Mount options
  7. =============
  8. When mounting an HFSPlus filesystem, the following options are accepted:
  9. creator=cccc, type=cccc
  10. Specifies the creator/type values as shown by the MacOS finder
  11. used for creating new files. Default values: '????'.
  12. uid=n, gid=n
  13. Specifies the user/group that owns all files on the filesystem
  14. that have uninitialized permissions structures.
  15. Default: user/group id of the mounting process.
  16. umask=n
  17. Specifies the umask (in octal) used for files and directories
  18. that have uninitialized permissions structures.
  19. Default: umask of the mounting process.
  20. session=n
  21. Select the CDROM session to mount as HFSPlus filesystem. Defaults to
  22. leaving that decision to the CDROM driver. This option will fail
  23. with anything but a CDROM as underlying devices.
  24. part=n
  25. Select partition number n from the devices. This option only makes
  26. sense for CDROMs because they can't be partitioned under Linux.
  27. For disk devices the generic partition parsing code does this
  28. for us. Defaults to not parsing the partition table at all.
  29. decompose
  30. Decompose file name characters.
  31. nodecompose
  32. Do not decompose file name characters.
  33. force
  34. Used to force write access to volumes that are marked as journalled
  35. or locked. Use at your own risk.
  36. nls=cccc
  37. Encoding to use when presenting file names.
  38. References
  39. ==========
  40. kernel source: <file:fs/hfsplus>
  41. Apple Technote 1150 https://developer.apple.com/legacy/library/technotes/tn/tn1150.html