creatingfilesystem.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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="space-creatingfilesystem">
  8. <?dbhtml filename="creatingfilesystem.html"?>
  9. <title>在分区上建立文件系统</title>
  10. <!--para>Now that a blank partition has been set up, the file system can be
  11. created. LFS can use any file system recognized by the Linux kernel, but the
  12. most common types are ext3 and ext4. The choice of file system can be
  13. complex and depends on the characteristics of the files and the size of
  14. the partition. For example:</para-->
  15. <para>现在我们建立好了空白分区,可以在分区上建立文件系统。
  16. LFS 可以使用 Linux 内核识别的任何文件系统,最常见的是 ext3 和 ext4。
  17. 文件系统的选型是一个复杂的问题,要综合考虑分区的大小和存储文件的特征。
  18. 例如:</para>
  19. <variablelist>
  20. <varlistentry>
  21. <term>ext2</term>
  22. <listitem><para>适用于不经常更新的小分区,例如 /boot。</para>
  23. </listitem>
  24. </varlistentry>
  25. <varlistentry>
  26. <term>ext3</term>
  27. <listitem><para>是 ext2 的升级版本,拥有日志系统,
  28. 能够在非正常关机的情况下恢复分区的正常状态。
  29. 它被广泛用于一般场合。
  30. </para>
  31. </listitem>
  32. </varlistentry>
  33. <varlistentry>
  34. <term>ext4</term>
  35. <listitem><para>是 ext 文件系统家族的最新成员,它具有纳秒精度时间戳、
  36. 超大 (16 TB) 文件支持等新功能,速度也更快。</para>
  37. </listitem>
  38. </varlistentry>
  39. </variablelist>
  40. <!--para>Other file systems, including FAT32, NTFS, ReiserFS, JFS, and XFS are
  41. useful for specialized purposes. More information about these file systems
  42. can be found at <ulink
  43. url="http://en.wikipedia.org/wiki/Comparison_of_file_systems"/>.</para>
  44. <para>LFS assumes that the root file system (/) is of type ext4. To create
  45. an <systemitem class="filesystem">ext4</systemitem> file system on the LFS
  46. partition, run the following:</para-->
  47. <para>其他文件系统,包括 FAT32, NTFS, ReiserFS, JFS 和 XFS
  48. 在特定场合也很有用。关于这些文件系统的更多信息,可以在
  49. <ulink url="http://en.wikipedia.org/wiki/Comparison_of_file_systems"/>
  50. 找到。</para>
  51. <para>LFS 假设根文件系统 (/) 采用 ext4 文件系统。
  52. 输入以下命令在 LFS 分区创建一个 ext4 文件系统:</para>
  53. <screen role="nodump"><userinput>mkfs -v -t ext4 /dev/<replaceable>&lt;xxx&gt;</replaceable></userinput></screen>
  54. <!--
  55. <para>Replace <replaceable>&lt;xxx&gt;</replaceable> with the name of the LFS
  56. partition (<filename class="devicefile">sda5</filename> in our previous
  57. example).</para>
  58. <note>
  59. <para>Some host distributions use custom features in their filesystem
  60. creation tools (E2fsprogs). This can cause problems when booting into your new
  61. LFS in Chapter&nbsp;9, as those features will not be supported by the LFS-installed
  62. E2fsprogs; you will get an error similar to <quote>unsupported filesystem
  63. features, upgrade your e2fsprogs</quote>. To check if your host system
  64. uses custom enhancements, run the following command:</para>
  65. <screen role="nodump"><userinput>debugfs -R feature /dev/<replaceable>&lt;xxx&gt;</replaceable></userinput></screen>
  66. <para>If the output contains features other than
  67. <option>has_journal</option>, <option>ext_attr</option>,
  68. <option>resize_inode</option>, <option>dir_index</option>,
  69. <option>filetype</option>, <option>sparse_super</option>,
  70. <option>large_file</option> or <option>needs_recovery</option>, then your
  71. host system may have custom enhancements. In that case, to avoid later
  72. problems, you should compile the stock E2fsprogs package and use the
  73. resulting binaries to re-create the filesystem on your LFS partition:</para>
  74. <screen role="nodump"><userinput>cd /tmp
  75. tar -xzvf /path/to/sources/e2fsprogs-&e2fsprogs-version;.tar.gz
  76. cd e2fsprogs-&e2fsprogs-version;
  77. mkdir -v build
  78. cd build
  79. ../configure
  80. make #note that we intentionally don't 'make install' here!
  81. ./misc/mke2fs -jv /dev/<replaceable>&lt;xxx&gt;</replaceable>
  82. cd /tmp
  83. rm -rfv e2fsprogs-&e2fsprogs-version;</userinput></screen>
  84. </note>
  85. -->
  86. <!--para>If you are using an existing <systemitem class="filesystem">swap
  87. </systemitem> partition, there is no need to format it. If a new
  88. <systemitem class="filesystem"> swap</systemitem> partition was created,
  89. it will need to be initialized with this command:</para-->
  90. <para>如果您拥有一个现成的
  91. <systemitem class="filesystem">swap</systemitem>分区,
  92. 就不用格式化它。如果新创建了一个
  93. <systemitem class="filesystem">swap</systemitem>分区,
  94. 需要用下列命令初始化它:
  95. </para>
  96. <screen role="nodump"><userinput>mkswap /dev/<replaceable>&lt;yyy&gt;</replaceable></userinput></screen>
  97. <!--para>Replace <replaceable>&lt;yyy&gt;</replaceable> with the name of the
  98. <systemitem class="filesystem">swap</systemitem> partition.</para-->
  99. <para>将<replaceable>&lt;yyy&gt;</replaceable> 替换成
  100. <systemitem class="filesystem">swap</systemitem> 分区的名称。</para>
  101. </sect1>