FSTAB.5
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. .TH FSTAB 5
  2. .SH NAME
  3. fstab, mtab - list of file systems to mount, mounted file system table.
  4. .SH SYNOPSIS
  5. .B /etc/fstab
  6. .sp
  7. .B /etc/mtab
  8. .SH DESCRIPTION
  9. .B /etc/fstab
  10. is a table of file system to mount at boot time,
  11. .B /etc/mtab
  12. is a table of currently mounted file systems as maintained by
  13. .B mount
  14. and
  15. .BR umount .
  16. .PP
  17. .B /etc/fstab
  18. is not read by
  19. .B mount
  20. as it should be.  It is instead a simple shell script listing the three
  21. devices that Minix needs to operate:  The device names of the root file
  22. system, the temporary (scratch) file system, and the file system for
  23. .BR /usr .
  24. Of these only the /usr file system is mounted in
  25. .BR /etc/rc ,
  26. the scratch file system is there for the system administrator to test new
  27. kernels, or as a temporary file system.
  28. .PP
  29. .B /etc/mtab
  30. contains lines of four fields.  The layout is:
  31. .sp
  32. .RS
  33. .nf
  34. .ft B
  35. .ta +10n +13n +8n
  36. device directory type options
  37. .ft P
  38. .fi
  39. .RE
  40. .PP
  41. These fields may be explained as follows:
  42. .sp
  43. .B device
  44. .br
  45. .RS
  46. A block special device.
  47. .RE
  48. .sp
  49. .B directory
  50. .br
  51. .RS
  52. Mount point.
  53. .RE
  54. .sp
  55. .B type
  56. .br
  57. .RS
  58. Either
  59. .BR 1 ,
  60. or
  61. .BR 2 ,
  62. indicating a V1 or V2 file system.
  63. .RE
  64. .sp
  65. .B options
  66. .br
  67. .RS
  68. Either
  69. .BR ro ,
  70. or
  71. .BR rw ,
  72. indicating a read-only or read-write mounted file system.
  73. .RE
  74. .SH FILES
  75. .TP 15n
  76. .B /etc/fstab
  77. Shell script naming three important file systems.
  78. .TP
  79. .B /etc/mtab
  80. List of mounted file systems.
  81. .SH "SEE ALSO"
  82. .BR printroot (8),
  83. .BR mount (1),
  84. .BR fsck (1),
  85. .BR mkfs (1).
  86. .SH BUGS
  87. .B /etc/fstab
  88. is a joke.
  89. .SH AUTHOR
  90. Kees J. Bot (kjb@cs.vu.nl)