creatingminlayout.po 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: PACKAGE VERSION\n"
  4. "POT-Creation-Date: 2020-06-17 12:44+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 the Minimal 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 minimal "
  20. "directory hierarchy so that programs compiled in <xref "
  21. "linkend=\"chapter-temporary-tools\"/> may be installed in their final "
  22. "location. This is needed so that those temporary programs be overwritten "
  23. "when rebuilding them in <xref linkend=\"chapter-building-system\"/>."
  24. msgstr ""
  25. "在 LFS 分区中需要进行的第一项任务是,创建一个最小目录树,使得在"
  26. "<xref linkend=\"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/{usr,lib,var,etc,bin,sbin}\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/{usr,lib,var,etc,bin,sbin}\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 "
  55. "linkend=\"ch-tools-toolchaintechnotes\"/>). In order to separate this "
  56. "cross-compiler from the other programs, it will be installed in a special "
  57. "directory. Create this directory with:"
  58. msgstr ""
  59. "在 <xref linkend=\"chapter-temporary-tools\"/> 中,"
  60. "会使用交叉编译器编译程序 (细节参见"
  61. "<xref linkend=\"ch-tools-toolchaintechnotes\"/>一节)。"
  62. "为了将这个交叉编译器和其他程序分离,它会被安装在一个专门的目录。"
  63. "执行以下命令创建该目录:"
  64. #. type: Content of: <sect1><screen>
  65. #: /home/xry111/svn-repos/LFS-BOOK/chapter04/creatingminlayout.xml:33
  66. #, no-wrap
  67. msgid "<userinput>mkdir -pv $LFS/tools</userinput>"
  68. msgstr "<userinput>mkdir -pv $LFS/tools</userinput>"