creatingdirs.xml 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.4/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>Creating Directories</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. <screen><userinput>install -dv /{bin,boot,dev,etc/opt,home,lib,mnt}
  13. install -dv /{sbin,srv,usr/local,var,opt}
  14. install -dv /root -m 0750
  15. install -dv /tmp /var/tmp -m 1777
  16. install -dv /media/{floppy,cdrom}
  17. install -dv /usr/{bin,include,lib,sbin,share,src}
  18. ln -sv share/{man,doc,info} /usr
  19. install -dv /usr/share/{doc,info,locale,man}
  20. install -dv /usr/share/{misc,terminfo,zoneinfo}
  21. install -dv /usr/share/man/man{1..8}
  22. install -dv /usr/local/{bin,etc,include,lib,sbin,share,src}
  23. ln -sv share/{man,doc,info} /usr/local
  24. install -dv /usr/local/share/{doc,info,locale,man}
  25. install -dv /usr/local/share/{misc,terminfo,zoneinfo}
  26. install -dv /usr/local/share/man/man{1,2,3,4,5,6,7,8}
  27. install -dv /var/{lock,log,mail,run,spool}
  28. install -dv /var/{opt,cache,lib/{misc,locate},local}
  29. install -dv /opt/{bin,doc,include,info}
  30. install -dv /opt/{lib,man/man{1,2,3,4,5,6,7,8}}</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>The first mode change ensures that not just anybody can enter
  37. the <filename class="directory">/root</filename> directory&mdash;the
  38. same as a normal user would do with his or her home directory. The
  39. second mode change makes sure that any user can write to the
  40. <filename class="directory">/tmp</filename> and <filename
  41. class="directory">/var/tmp</filename> directories, but cannot remove
  42. another user's files from them. The latter is prohibited by the so-called
  43. <quote>sticky bit,</quote> the highest bit (1) in the 1777 bit mask.</para>
  44. <note>
  45. <para>Notice the two different constructions above for creating multiple
  46. man directories: <command>install -d /usr/share/man/man{1..8}</command> and
  47. <command>install -d /usr/local/share/man/man{1,2,3,4,5,6,7,8}</command>. The
  48. first one is new since Bash 3.0. This new feature will help make repetitive
  49. commands easier to type.</para>
  50. </note>
  51. <sect2>
  52. <title>FHS Compliance Note</title>
  53. <para>The directory tree is based on the Filesystem Hierarchy Standard
  54. (FHS) (available at <ulink url="http://www.pathname.com/fhs/"/>). In
  55. addition to the tree created above, this standard stipulates the existence
  56. of <filename class="directory">/usr/local/games</filename> and <filename
  57. class="directory">/usr/share/games</filename>. The FHS is not precise as to
  58. the structure of the <filename class="directory">/usr/local/share</filename>
  59. subdirectory, so we create only the directories that are needed. However,
  60. feel free to create these directories if you prefer to conform more strictly
  61. to the FHS.</para>
  62. </sect2>
  63. </sect1>