befs.txt
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. BeOS filesystem for Linux
  2. Document last updated: Dec 6, 2001
  3. WARNING
  4. =======
  5. Make sure you understand that this is alpha software.  This means that the
  6. implementation is neither complete nor well-tested. 
  7. I DISCLAIM ALL RESPONSIBILTY FOR ANY POSSIBLE BAD EFFECTS OF THIS CODE!
  8. LICENSE
  9. =====
  10. This software is covered by the GNU General Public License. 
  11. See the file COPYING for the complete text of the license.
  12. Or the GNU website: <http://www.gnu.org/licenses/licenses.html>
  13. AUTHOR
  14. =====
  15. Current maintainer: Will Dyson <will_dyson@pobox.com>
  16. Has been working on the code since Aug 13, 2001. See the changelog for details.
  17. Original Author: Makoto Kato <m_kato@ga2.so-net.ne.jp>
  18. His orriginal code can still be found at: <http://hp.vector.co.jp/authors/VA008030/bfs/>
  19. Does anyone know of a more current email address for Makoto? He doesn't respond
  20. to the address given above...
  21. WHAT IS THIS DRIVER?
  22. ==================
  23. This module implements the native filesystem of BeOS <http://www.be.com/>
  24. for the linux 2.4.1 and later kernels. Currently it is a read-only implementation.
  25. Which is it, BFS or BEFS?
  26. ================
  27. Be, Inc said, "BeOS Filesystem is officially called BFS, not BeFS". 
  28. But Unixware Boot Filesystem is called bfs, too. And they are already in the
  29. kernel.
  30. Because of this nameing conflict, on Linux the BeOS filesystem is called befs.
  31. HOW TO INSTALL
  32. ==============
  33. step 1.  Install the BeFS  patch into the source code tree of linux.
  34. Apply the patchfile to your kernel source tree.
  35. Assuming that your kernel source is in /foo/bar/linux and the patchfile is called
  36. patch-befs-xxx, you would do the following:
  37. cd /foo/bar/linux
  38. patch -p1 < /path/to/patch-befs-xxx
  39. if the patching step fails (i.e. there are rejected hunks), you can try to
  40. figure it out yourself (it shouldn't be hard), or mail the maintainer 
  41. (Will Dyson <will_dyson@pobox.com>) for help.
  42. step 2.  Configuretion & make kernel
  43. The linux kernel has many compile-time options. Most of them are beyond the
  44. scope of this document. I suggest the Kernel-HOWTO document as a good general
  45. reference on this topic. <http://www.linux.com/howto/Kernel-HOWTO.html>
  46. However, to use the BeFS module, you must enable it at configure time.
  47. cd /foo/bar/linux
  48. make menuconfig (or xconfig)
  49. The BeFS module is not a standard part of the linux kernel, so you must first
  50. enable support for experimental code under the "Code maturity level" menu.
  51. Then, under the "Filesystems" menu will be an option called "BeFS filesystem (experimental)",
  52. or something like that. Enable that option (it is fine to make it a module).
  53. Save your kernel configuration and then build your kernel.
  54. step 3.  Install
  55. See the kernel howto <http://www.linux.com/howto/Kernel-HOWTO.html> for
  56. instructions on this critical step.
  57. USING BFS
  58. =========
  59. To use the BeOS filesystem, use filesystem type 'befs'.
  60. ex)
  61.     mount -t befs /dev/fd0 /beos
  62. MOUNT OPTIONS
  63. =============
  64. uid=nnn        All files in the partition will be owned by user id nnn.
  65. gid=nnn        All files in the partition will be in group nnn.
  66. iocharset=xxx  Use xxx as the name of the NLS translation table.
  67. debug          The driver will output debugging information to the syslog.
  68. HOW TO GET LASTEST VERSION
  69. ==========================
  70. The latest version is currently available at:
  71. <http://befs-driver.sourceforge.net/>
  72. ANY KNOWN BUGS?
  73. ===========
  74. As of Jan 20, 2002:
  75. None
  76. SPECIAL THANKS
  77. ==============
  78. Dominic Giampalo ... Writing "Practical file system design with Be filesystem"
  79. Hiroyuki Yamada  ... Testing LinuxPPC.