creatingminlayout.po 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: PACKAGE VERSION\n"
  4. "POT-Creation-Date: 2020-08-05 04:39+0800\n"
  5. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  6. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  7. "Language-Team: LANGUAGE <LL@li.org>\n"
  8. "Language: \n"
  9. "MIME-Version: 1.0\n"
  10. "Content-Type: text/plain; charset=UTF-8\n"
  11. "Content-Transfer-Encoding: 8bit\n"
  12. #. type: Content of: <sect1><title>
  13. #: /home/xry111/svn-repos/LFS-BOOK/chapter04/creatingminlayout.xml:11
  14. msgid "Creating a limited directory layout in LFS filesystem"
  15. msgstr "在 LFS 文件系统中创建有限目录布局"
  16. #. type: Content of: <sect1><para>
  17. #: /home/xry111/svn-repos/LFS-BOOK/chapter04/creatingminlayout.xml:13
  18. msgid ""
  19. "The first task performed in the LFS partition is to create a limited "
  20. "directory hierarchy so that programs compiled in <xref linkend=\"chapter-"
  21. "temporary-tools\"/> may be installed in their final location. This is needed "
  22. "so that those temporary programs be overwritten when rebuilding them in "
  23. "<xref linkend=\"chapter-building-system\"/>."
  24. msgstr ""
  25. "在 LFS 分区中需要进行的第一项任务是,创建一个有限的目录树,使得在<xref linkend="
  26. "\"chapter-temporary-tools\"/>中编译的程序可以被安装到它们的最终位置。这样,在"
  27. "<xref linkend=\"chapter-building-system\"/>中重新构建它们时,就能直接覆盖这些"
  28. "临时程序。"
  29. #. type: Content of: <sect1><para>
  30. #: /home/xry111/svn-repos/LFS-BOOK/chapter04/creatingminlayout.xml:19
  31. msgid ""
  32. "Create the required directory layout by running the following as <systemitem "
  33. "class=\"username\">root</systemitem>:"
  34. msgstr ""
  35. "以 <systemitem class=\"username\">root</systemitem> 身份,执行以下命令创建所"
  36. "需的目录布局:"
  37. #. type: Content of: <sect1><screen>
  38. #: /home/xry111/svn-repos/LFS-BOOK/chapter04/creatingminlayout.xml:22
  39. #, no-wrap
  40. msgid ""
  41. "<userinput>mkdir -pv $LFS/{bin,etc,lib,sbin,usr,var}\n"
  42. "case $(uname -m) in\n"
  43. " x86_64) mkdir -pv $LFS/lib64 ;;\n"
  44. "esac</userinput>"
  45. msgstr ""
  46. "<userinput>mkdir -pv $LFS/{bin,etc,lib,sbin,usr,var}\n"
  47. "case $(uname -m) in\n"
  48. " x86_64) mkdir -pv $LFS/lib64 ;;\n"
  49. "esac</userinput>"
  50. #. type: Content of: <sect1><para>
  51. #: /home/xry111/svn-repos/LFS-BOOK/chapter04/creatingminlayout.xml:27
  52. msgid ""
  53. "Programs in <xref linkend=\"chapter-temporary-tools\"/> will be compiled "
  54. "with a cross-compiler (more details in section <xref linkend=\"ch-tools-"
  55. "toolchaintechnotes\"/>). In order to separate this cross-compiler from the "
  56. "other programs, it will be installed in a special directory. Create this "
  57. "directory with:"
  58. msgstr ""
  59. "在 <xref linkend=\"chapter-temporary-tools\"/> 中,会使用交叉编译器编译程序 "
  60. "(细节参见<xref linkend=\"ch-tools-toolchaintechnotes\"/>一节)。为了将这个交叉"
  61. "编译器和其他程序分离,它会被安装在一个专门的目录。执行以下命令创建该目录:"
  62. #. type: Content of: <sect1><screen>
  63. #: /home/xry111/svn-repos/LFS-BOOK/chapter04/creatingminlayout.xml:33
  64. #, no-wrap
  65. msgid "<userinput>mkdir -pv $LFS/tools</userinput>"
  66. msgstr "<userinput>mkdir -pv $LFS/tools</userinput>"