creatingfilesystem.po 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. # SOME DESCRIPTIVE TITLE
  2. # Copyright (C) YEAR Free Software Foundation, Inc.
  3. # This file is distributed under the same license as the PACKAGE package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: PACKAGE VERSION\n"
  10. "POT-Creation-Date: 2020-06-17 12:44+0800\n"
  11. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  12. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  13. "Language-Team: LANGUAGE <LL@li.org>\n"
  14. "Language: \n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. #. type: Content of: <sect1><title>
  19. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/creatingfilesystem.xml:11
  20. msgid "Creating a File System on the Partition"
  21. msgstr ""
  22. #. type: Content of: <sect1><para>
  23. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/creatingfilesystem.xml:13
  24. msgid ""
  25. "Now that a blank partition has been set up, the file system can be created. "
  26. "LFS can use any file system recognized by the Linux kernel, but the most "
  27. "common types are ext3 and ext4. The choice of file system can be complex "
  28. "and depends on the characteristics of the files and the size of the "
  29. "partition. For example:"
  30. msgstr ""
  31. #. type: Content of: <sect1><variablelist><varlistentry><term>
  32. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/creatingfilesystem.xml:21
  33. msgid "ext2"
  34. msgstr ""
  35. #. type: Content of: <sect1><variablelist><varlistentry><listitem><para>
  36. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/creatingfilesystem.xml:22
  37. msgid ""
  38. "is suitable for small partitions that are updated infrequently such as "
  39. "/boot."
  40. msgstr ""
  41. #. type: Content of: <sect1><variablelist><varlistentry><term>
  42. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/creatingfilesystem.xml:27
  43. msgid "ext3"
  44. msgstr ""
  45. #. type: Content of: <sect1><variablelist><varlistentry><listitem><para>
  46. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/creatingfilesystem.xml:28
  47. msgid ""
  48. "is an upgrade to ext2 that includes a journal to help recover the "
  49. "partition's status in the case of an unclean shutdown. It is commonly used "
  50. "as a general purpose file system."
  51. msgstr ""
  52. #. type: Content of: <sect1><variablelist><varlistentry><term>
  53. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/creatingfilesystem.xml:35
  54. msgid "ext4"
  55. msgstr ""
  56. #. type: Content of: <sect1><variablelist><varlistentry><listitem><para>
  57. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/creatingfilesystem.xml:36
  58. msgid ""
  59. "is the latest version of the ext file system family of partition types. It "
  60. "provides several new capabilities including nano-second timestamps, creation "
  61. "and use of very large files (16 TB), and speed improvements."
  62. msgstr ""
  63. #. type: Content of: <sect1><para>
  64. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/creatingfilesystem.xml:44
  65. msgid ""
  66. "Other file systems, including FAT32, NTFS, ReiserFS, JFS, and XFS are useful "
  67. "for specialized purposes. More information about these file systems can be "
  68. "found at <ulink "
  69. "url=\"http://en.wikipedia.org/wiki/Comparison_of_file_systems\"/>."
  70. msgstr ""
  71. #. type: Content of: <sect1><para>
  72. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/creatingfilesystem.xml:49
  73. msgid ""
  74. "LFS assumes that the root file system (/) is of type ext4. To create an "
  75. "<systemitem class=\"filesystem\">ext4</systemitem> file system on the LFS "
  76. "partition, run the following:"
  77. msgstr ""
  78. #. type: Content of: <sect1><screen>
  79. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/creatingfilesystem.xml:53
  80. #, no-wrap
  81. msgid ""
  82. "<userinput>mkfs -v -t ext4 "
  83. "/dev/<replaceable>&lt;xxx&gt;</replaceable></userinput>"
  84. msgstr ""
  85. #. type: Content of: <sect1><para>
  86. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/creatingfilesystem.xml:55
  87. msgid ""
  88. "Replace <replaceable>&lt;xxx&gt;</replaceable> with the name of the LFS "
  89. "partition."
  90. msgstr ""
  91. #. type: Content of: <sect1><para>
  92. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/creatingfilesystem.xml:58
  93. msgid ""
  94. "If you are using an existing <systemitem class=\"filesystem\">swap "
  95. "</systemitem> partition, there is no need to format it. If a new <systemitem "
  96. "class=\"filesystem\"> swap</systemitem> partition was created, it will need "
  97. "to be initialized with this command:"
  98. msgstr ""
  99. #. type: Content of: <sect1><screen>
  100. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/creatingfilesystem.xml:63
  101. #, no-wrap
  102. msgid "<userinput>mkswap /dev/<replaceable>&lt;yyy&gt;</replaceable></userinput>"
  103. msgstr ""
  104. #. type: Content of: <sect1><para>
  105. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/creatingfilesystem.xml:65
  106. msgid ""
  107. "Replace <replaceable>&lt;yyy&gt;</replaceable> with the name of the "
  108. "<systemitem class=\"filesystem\">swap</systemitem> partition."
  109. msgstr ""