ocfs2.txt 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. OCFS2 filesystem
  2. ==================
  3. OCFS2 is a general purpose extent based shared disk cluster file
  4. system with many similarities to ext3. It supports 64 bit inode
  5. numbers, and has automatically extending metadata groups which may
  6. also make it attractive for non-clustered use.
  7. You'll want to install the ocfs2-tools package in order to at least
  8. get "mount.ocfs2" and "ocfs2_hb_ctl".
  9. Project web page: http://oss.oracle.com/projects/ocfs2
  10. Tools web page: http://oss.oracle.com/projects/ocfs2-tools
  11. OCFS2 mailing lists: http://oss.oracle.com/projects/ocfs2/mailman/
  12. All code copyright 2005 Oracle except when otherwise noted.
  13. CREDITS:
  14. Lots of code taken from ext3 and other projects.
  15. Authors in alphabetical order:
  16. Joel Becker <joel.becker@oracle.com>
  17. Zach Brown <zach.brown@oracle.com>
  18. Mark Fasheh <mark.fasheh@oracle.com>
  19. Kurt Hackel <kurt.hackel@oracle.com>
  20. Sunil Mushran <sunil.mushran@oracle.com>
  21. Manish Singh <manish.singh@oracle.com>
  22. Caveats
  23. =======
  24. Features which OCFS2 does not support yet:
  25. - extended attributes
  26. - quotas
  27. - cluster aware flock
  28. - cluster aware lockf
  29. - Directory change notification (F_NOTIFY)
  30. - Distributed Caching (F_SETLEASE/F_GETLEASE/break_lease)
  31. - POSIX ACLs
  32. Mount options
  33. =============
  34. OCFS2 supports the following mount options:
  35. (*) == default
  36. barrier=1 This enables/disables barriers. barrier=0 disables it,
  37. barrier=1 enables it.
  38. errors=remount-ro(*) Remount the filesystem read-only on an error.
  39. errors=panic Panic and halt the machine if an error occurs.
  40. intr (*) Allow signals to interrupt cluster operations.
  41. nointr Do not allow signals to interrupt cluster
  42. operations.
  43. atime_quantum=60(*) OCFS2 will not update atime unless this number
  44. of seconds has passed since the last update.
  45. Set to zero to always update atime.
  46. data=ordered (*) All data are forced directly out to the main file
  47. system prior to its metadata being committed to the
  48. journal.
  49. data=writeback Data ordering is not preserved, data may be written
  50. into the main file system after its metadata has been
  51. committed to the journal.
  52. preferred_slot=0(*) During mount, try to use this filesystem slot first. If
  53. it is in use by another node, the first empty one found
  54. will be chosen. Invalid values will be ignored.
  55. commit=nrsec (*) Ocfs2 can be told to sync all its data and metadata
  56. every 'nrsec' seconds. The default value is 5 seconds.
  57. This means that if you lose your power, you will lose
  58. as much as the latest 5 seconds of work (your
  59. filesystem will not be damaged though, thanks to the
  60. journaling). This default value (or any low value)
  61. will hurt performance, but it's good for data-safety.
  62. Setting it to 0 will have the same effect as leaving
  63. it at the default (5 seconds).
  64. Setting it to very large values will improve
  65. performance.
  66. localalloc=8(*) Allows custom localalloc size in MB. If the value is too
  67. large, the fs will silently revert it to the default.
  68. Localalloc is not enabled for local mounts.
  69. localflocks This disables cluster aware flock.