mounting.po 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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/mounting.xml:11
  20. msgid "Mounting the New Partition"
  21. msgstr ""
  22. #. type: Content of: <sect1><para>
  23. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/mounting.xml:13
  24. msgid ""
  25. "Now that a file system has been created, the partition needs to be made "
  26. "accessible. In order to do this, the partition needs to be mounted at a "
  27. "chosen mount point. For the purposes of this book, it is assumed that the "
  28. "file system is mounted under the directory specified by the "
  29. "<envar>LFS</envar> environment variable as described in the previous "
  30. "section."
  31. msgstr ""
  32. #. type: Content of: <sect1><para>
  33. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/mounting.xml:20
  34. msgid "Create the mount point and mount the LFS file system by running:"
  35. msgstr ""
  36. #. type: Content of: <sect1><screen>
  37. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/mounting.xml:22
  38. #, no-wrap
  39. msgid ""
  40. "<userinput>mkdir -pv $LFS\n"
  41. "mount -v -t ext4 /dev/<replaceable>&lt;xxx&gt;</replaceable> "
  42. "$LFS</userinput>"
  43. msgstr ""
  44. #. type: Content of: <sect1><para>
  45. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/mounting.xml:25
  46. msgid ""
  47. "Replace <replaceable>&lt;xxx&gt;</replaceable> with the designation of the "
  48. "LFS partition."
  49. msgstr ""
  50. #. type: Content of: <sect1><para>
  51. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/mounting.xml:28
  52. msgid ""
  53. "If using multiple partitions for LFS (e.g., one for <filename "
  54. "class=\"directory\">/</filename> and another for <filename "
  55. "class=\"directory\">/usr</filename>), mount them using:"
  56. msgstr ""
  57. #. type: Content of: <sect1><screen>
  58. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/mounting.xml:32
  59. #, no-wrap
  60. msgid ""
  61. "<userinput>mkdir -pv $LFS\n"
  62. "mount -v -t ext4 /dev/<replaceable>&lt;xxx&gt;</replaceable> $LFS\n"
  63. "mkdir -v $LFS/usr\n"
  64. "mount -v -t ext4 /dev/<replaceable>&lt;yyy&gt;</replaceable> "
  65. "$LFS/usr</userinput>"
  66. msgstr ""
  67. #. type: Content of: <sect1><para>
  68. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/mounting.xml:37
  69. msgid ""
  70. "Replace <replaceable>&lt;xxx&gt;</replaceable> and "
  71. "<replaceable>&lt;yyy&gt;</replaceable> with the appropriate partition names."
  72. msgstr ""
  73. #. type: Content of: <sect1><para>
  74. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/mounting.xml:41
  75. msgid ""
  76. "Ensure that this new partition is not mounted with permissions that are too "
  77. "restrictive (such as the <option>nosuid</option> or <option>nodev</option> "
  78. "options). Run the <command>mount</command> command without any parameters to "
  79. "see what options are set for the mounted LFS partition. If "
  80. "<option>nosuid</option> and/or <option>nodev</option> are set, the partition "
  81. "will need to be remounted."
  82. msgstr ""
  83. #. type: Content of: <sect1><warning><para><screen>
  84. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/mounting.xml:54
  85. #, no-wrap
  86. msgid ""
  87. "/dev/<replaceable>&lt;xxx&gt;</replaceable> /mnt/lfs ext4 defaults 1 "
  88. "1"
  89. msgstr ""
  90. #. type: Content of: <sect1><warning><para>
  91. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/mounting.xml:48
  92. msgid ""
  93. "The above instructions assume that you will not be restarting your computer "
  94. "throughout the LFS process. If you shut down your system, you will either "
  95. "need to remount the LFS partition each time you restart the build process or "
  96. "modify your host system's /etc/fstab file to automatically remount it upon "
  97. "boot. For example: <placeholder type=\"screen\" id=\"0\"/> If you use "
  98. "additional optional partitions, be sure to add them also."
  99. msgstr ""
  100. #. type: Content of: <sect1><para>
  101. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/mounting.xml:61
  102. msgid ""
  103. "If you are using a <systemitem class=\"filesystem\">swap</systemitem> "
  104. "partition, ensure that it is enabled using the <command>swapon</command> "
  105. "command:"
  106. msgstr ""
  107. #. type: Content of: <sect1><screen>
  108. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/mounting.xml:65
  109. #, no-wrap
  110. msgid ""
  111. "<userinput>/sbin/swapon -v "
  112. "/dev/<replaceable>&lt;zzz&gt;</replaceable></userinput>"
  113. msgstr ""
  114. #. type: Content of: <sect1><para>
  115. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/mounting.xml:67
  116. msgid ""
  117. "Replace <replaceable>&lt;zzz&gt;</replaceable> with the name of the "
  118. "<systemitem class=\"filesystem\">swap</systemitem> partition."
  119. msgstr ""
  120. #. type: Content of: <sect1><para>
  121. #: /home/xry111/svn-repos/LFS-BOOK/chapter02/mounting.xml:70
  122. msgid ""
  123. "Now that there is an established place to work, it is time to download the "
  124. "packages."
  125. msgstr ""