fstab.xml 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-bootable-fstab">
  8. <?dbhtml filename="fstab.html"?>
  9. <title>创建 /etc/fstab 文件</title>
  10. <indexterm zone="ch-bootable-fstab">
  11. <primary sortas="e-/etc/fstab">/etc/fstab</primary>
  12. </indexterm>
  13. <!--para>The <filename>/etc/fstab</filename> file is used by some programs to
  14. determine where file systems are to be mounted by default, in which order, and
  15. which must be checked (for integrity errors) prior to mounting. Create a new
  16. file systems table like this:</para-->
  17. <para>一些程序使用 <filename>/etc/fstab</filename> 文件,
  18. 以确定哪些文件系统是默认挂载的,和它们应该按什么顺序挂载,
  19. 以及哪些文件系统在挂载前必须被检查(确定是否有完整性错误)。
  20. 参考以下命令,创建一个新的文件系统表:</para>
  21. <screen revision="sysv"><userinput>cat &gt; /etc/fstab &lt;&lt; "EOF"
  22. <literal># Begin /etc/fstab
  23. # 文件系统 挂载点 类型 选项 转储 检查
  24. # 顺序
  25. /dev/<replaceable>&lt;xxx&gt;</replaceable> / <replaceable>&lt;fff&gt;</replaceable> defaults 1 1
  26. /dev/<replaceable>&lt;yyy&gt;</replaceable> swap swap pri=1 0 0
  27. proc /proc proc nosuid,noexec,nodev 0 0
  28. sysfs /sys sysfs nosuid,noexec,nodev 0 0
  29. devpts /dev/pts devpts gid=5,mode=620 0 0
  30. tmpfs /run tmpfs defaults 0 0
  31. devtmpfs /dev devtmpfs mode=0755,nosuid 0 0
  32. # End /etc/fstab</literal>
  33. EOF</userinput></screen>
  34. <screen revision="systemd"><userinput>cat &gt; /etc/fstab &lt;&lt; "EOF"
  35. <literal># Begin /etc/fstab
  36. # 文件系统 挂载点 类型 选项 转储 检查
  37. # 顺序
  38. /dev/<replaceable>&lt;xxx&gt;</replaceable> / <replaceable>&lt;fff&gt;</replaceable> defaults 1 1
  39. /dev/<replaceable>&lt;yyy&gt;</replaceable> swap swap pri=1 0 0
  40. # End /etc/fstab</literal>
  41. EOF</userinput></screen>
  42. <para>将 <replaceable>&lt;xxx&gt;</replaceable>、
  43. <replaceable>&lt;yyy&gt;</replaceable> 和 <replaceable>&lt;fff&gt;</replaceable>
  44. 替换为适用于您的系统的值,例如 <filename
  45. class="partition">sda2</filename>、<filename
  46. class="partition">sda5</filename> 和 <systemitem
  47. class="filesystem">ext4</systemitem>。
  48. 参阅 <command>man 5 fstab</command> 了解该文件中 6 个域的详细信息。</para>
  49. <!--para>Filesystems with MS-DOS or Windows origin (i.e.: vfat, ntfs, smbfs, cifs,
  50. iso9660, udf) need the <quote>iocharset</quote> mount option in order for
  51. non-ASCII characters in file names to be interpreted properly. The value
  52. of this option should be the same as the character set of your locale,
  53. adjusted in such a way that the kernel understands it. This works if the
  54. relevant character set definition (found under File systems -&gt;
  55. Native Language Support) has been compiled into the kernel
  56. or built as a module. The <quote>codepage</quote> option is also needed for
  57. vfat and smbfs filesystems. It should be set to the codepage number used
  58. under MS-DOS in your country. E.g., in order to mount USB flash drives, a
  59. ru_RU.KOI8-R user would need the following in the options portion of its
  60. mount line in <filename>/etc/fstab</filename>:</para-->
  61. <para>在挂载来源于 MS-DOS 或 Windows 的文件系统
  62. (如 vfat、ntfs、smbfs、cifs、iso9660、udf)时,
  63. 需要一个特殊的挂载选项 —— utf8,
  64. 才能正常解析文件名中的非 ASCII 字符。对于非 UTF-8 locale,选项
  65. <option>iocharset</option> 的值应该和您的 locale
  66. 字符集设定一致,但改写成内核可以识别的写法。
  67. 该选项能够正常工作的前提是,将相关的字符集定义(在内核配置选项的
  68. File Systems -&gt; Native Language Support 子菜单中)
  69. 编译到内核中,或构建为内核模块。然而,如果使用了 UTF-8 locale,
  70. 对应的 <option>iocharset=utf8</option> 会导致文件系统变得大小写敏感。
  71. 为了避免这个问题,在使用 UTF-8 locale 时,
  72. 需要用特殊选项 <option>utf8</option> 代替
  73. <option>iocharset=utf8</option>。
  74. 另外,vfat 和 smbfs 文件系统还需要 <quote>codepage</quote> 选项,
  75. 它应该被设定为您的语言在 MS-DOS 下的代码页编号。
  76. 例如,为了挂载一个 USB 闪存盘,一个 ru_RU.KOI8-R 用户应该在
  77. <filename>/etc/fstab</filename> 中对应于闪存盘的行添加下列挂载选项:
  78. </para>
  79. <screen><literal>noauto,user,quiet,showexec,codepage=866,iocharset=koi8r</literal></screen>
  80. <para>相应的,ru_RU.UTF-8 用户应该使用下列选项:</para>
  81. <screen><literal>noauto,user,quiet,showexec,codepage=866,utf8</literal></screen>
  82. <para>注意此时使用的 <option>iocharset</option> 默认为
  83. <literal>iso8859-1</literal> (这保证文件系统是大小写不敏感的),
  84. 而 <option>utf8</option> 选项告诉内核使用 UTF-8 编码转换文件名,
  85. 这样它们就能在 UTF-8 locale 中被正确解析。</para>
  86. <!--note>
  87. <para>In the latter case, the kernel emits the following message:</para>
  88. <screen><computeroutput>FAT: utf8 is not a recommended IO charset for FAT filesystems,
  89. filesystem will be case sensitive!</computeroutput></screen>
  90. <para>翻译为:</para>
  91. <screen><computeroutput>FAT: 不推荐使用 utf8 作为 FAT 文件系统的输入输出字符集,
  92. 这会导致文件系统变得大小写敏感!</computeroutput></screen>
  93. <para>这项警告信息应该被忽略,因为其他
  94. <quote>iocharset</quote> 值在 UTF-8 locale 下无法正确显示文件名。</para>
  95. </note>
  96. <note><title>译注</title>
  97. <para>经译者实测,对于 UTF-8 locale 来说,应该用
  98. <quote>utf8</quote> 选项代替 <quote>iocharset=utf8</quote>,
  99. 后者确实会导致文件名变得大小写不敏感(即文件 <quote>囧A</quote>
  100. 和 <quote>囧a</quote> 可以同时存在)。例如,对于 zh_CN.UTF-8
  101. 用户来说,应该使用的挂载选项是
  102. <screen><literal>noauto,user,quiet,showexec,utf8,codepage=936</literal></screen>
  103. </para>
  104. </note-->
  105. <!--para>It is also possible to specify default codepage and iocharset values for
  106. some filesystems during kernel configuration. The relevant parameters
  107. are named
  108. <quote>Default NLS Option</quote> (<option>CONFIG_NLS_DEFAULT)</option>,
  109. <quote>Default Remote NLS Option</quote> (<option>CONFIG_SMB_NLS_DEFAULT</option>),
  110. <quote>Default codepage for FAT</quote> (<option>CONFIG_FAT_DEFAULT_CODEPAGE</option>), and
  111. <quote>Default iocharset for FAT</quote> (<option>CONFIG_FAT_DEFAULT_IOCHARSET</option>).
  112. There is no way to specify these settings for the
  113. ntfs filesystem at kernel compilation time.</para-->
  114. <para>也可以在内核配置中,
  115. 为一些文件系统指定默认 codepage 和 iocharset 选项值。
  116. 相关的配置参数名为
  117. <quote>Default NLS Option</quote>
  118. (<option>CONFIG_NLS_DEFAULT</option>)、
  119. <quote>Default Remote NLS Option</quote>
  120. (<option>CONFIG_SMB_NLS_DEFAULT</option>)、
  121. <quote>Default codepage for FAT</quote>
  122. (<option>CONFIG_FAT_DEFAULT_CODEPAGE</option>)
  123. 和 <quote>Default iocharset for FAT</quote>
  124. (<option>CONFIG_FAT_DEFAULT_IOCHARSET</option>)。
  125. 无法在编译内核时为 ntfs 文件系统指定这些默认值。
  126. </para>
  127. <!--para>It is possible to make the ext3 filesystem reliable across power
  128. failures for some hard disk types. To do this, add the
  129. <option>barrier=1</option> mount option to the appropriate entry in
  130. <filename>/etc/fstab</filename>. To check if the disk drive supports
  131. this option, run
  132. <ulink url="&blfs-book;general/hdparm.html">hdparm</ulink>
  133. on the applicable disk drive. For example, if:</para-->
  134. <para>在某些硬盘上,在 <filename>/etc/fstab</filename> 中添加
  135. <option>barrier=1</option> 挂载选项,
  136. 可以使得 ext3 文件系统在发生电源故障时更可靠。
  137. 为了检查磁盘驱动器是否支持该选项,在可用的磁盘驱动器上运行
  138. <ulink url="&blfs-book;general/hdparm.html">hdparm</ulink>。
  139. 例如:</para>
  140. <screen role="nodump"><userinput>hdparm -I /dev/sda | grep NCQ</userinput></screen>
  141. <para>如果输出内容不为空,说明该选项可用。</para>
  142. <para>注意:基于逻辑卷管理(LVM)的分区不能使用
  143. <option>barrier</option> 选项。</para>
  144. </sect1>