creatingdirs.xml 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-system-creatingdirs">
  8. <?dbhtml filename="creatingdirs.html"?>
  9. <title>创建目录</title>
  10. <!--para>It is time to create some structure in the LFS file system. Create a
  11. standard directory tree by issuing the following commands:</para-->
  12. <para>现在需要在 LFS 文件系统中创建一些目录结构。
  13. 执行以下命令,创建一棵标准目录树:</para>
  14. <screen><userinput>mkdir -pv /{bin,boot,etc/{opt,sysconfig},home,lib/firmware,mnt,opt}
  15. mkdir -pv /{media/{floppy,cdrom},sbin,srv,var}
  16. install -dv -m 0750 /root
  17. install -dv -m 1777 /tmp /var/tmp
  18. mkdir -pv /usr/{,local/}{bin,include,lib,sbin,src}
  19. mkdir -pv /usr/{,local/}share/{color,dict,doc,info,locale,man}
  20. mkdir -v /usr/{,local/}share/{misc,terminfo,zoneinfo}
  21. mkdir -v /usr/libexec
  22. mkdir -pv /usr/{,local/}share/man/man{1..8}
  23. mkdir -v /usr/lib/pkgconfig
  24. case $(uname -m) in
  25. x86_64) mkdir -v /lib64 ;;
  26. esac
  27. mkdir -v /var/{log,mail,spool}
  28. ln -sv /run /var/run
  29. ln -sv /run/lock /var/lock
  30. mkdir -pv /var/{opt,cache,lib/{color,misc,locate},local}</userinput></screen>
  31. <!--para>Directories are, by default, created with permission mode 755, but
  32. this is not desirable for all directories. In the commands above, two
  33. changes are made&mdash;one to the home directory of user <systemitem
  34. class="username">root</systemitem>, and another to the directories for
  35. temporary files.</para-->
  36. <para>默认情况下,新创建的目录具有权限码 755 ,但这并不适合所有目录。
  37. 在以上命令中,两个目录的访问权限被修改 —— 一个是 <systemitem
  38. class="username">root</systemitem> 的主目录,
  39. 另一个是包含临时文件的目录。</para>
  40. <!--para>The first mode change ensures that not just anybody can enter
  41. the <filename class="directory">/root</filename> directory&mdash;the
  42. same as a normal user would do with his or her home directory. The
  43. second mode change makes sure that any user can write to the
  44. <filename class="directory">/tmp</filename> and <filename
  45. class="directory">/var/tmp</filename> directories, but cannot remove
  46. another user's files from them. The latter is prohibited by the so-called
  47. <quote>sticky bit,</quote> the highest bit (1) in the 1777 bit mask.</para-->
  48. <para>第一个修改能保证不是所有人都能进入
  49. <filename class="directory">/root</filename> ——
  50. 一般用户也可以为他/她的主目录设置同样的 0750 权限码。
  51. 第二个修改保证任何用户都可写入
  52. <filename class="directory">/tmp</filename> 和
  53. <filename class="directory">/var/tmp</filename> 目录,
  54. 但不能从中删除其他用户的文件,因为所谓的 <quote>粘滞位</quote>
  55. (sticky bit),即八进制权限码 1777 的最高位 (1) 阻止这样做。</para>
  56. <sect2>
  57. <title>FHS 兼容性注记</title>
  58. <!--para>The directory tree is based on the Filesystem Hierarchy Standard
  59. (FHS) (available at <ulink
  60. url="https://refspecs.linuxfoundation.org/fhs.shtml"/>). The FHS also specifies
  61. the optional existence of some directories such as <filename
  62. class="directory">/usr/local/games</filename> and <filename
  63. class="directory">/usr/share/games</filename>. We create only the
  64. directories that are needed. However, feel free to create these
  65. directories. </para-->
  66. <para>这个目录树是基于 Filesystem Hierarchy Standard (FHS)
  67. (可以在 <ulink url="https://wiki.linuxfoundation.org/en/FHS"/>
  68. 查阅)建立的。 FHS 标准还规定了某些可选的目录,
  69. 例如 <filename class="directory">/usr/local/games</filename>
  70. 和 <filename class="directory">/usr/share/games</filename>。
  71. 我们只创建了必要的目录,如果您需要的话可以自己创建可选这些可选目录。
  72. </para>
  73. </sect2>
  74. </sect1>