creatingminlayout.po 2.7 KB

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