creatingdirs.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <sect1 id="ch06-creatingdirs">
  2. <title>Creating directories</title>
  3. <?dbhtml filename="creatingdirs.html" dir="chapter06"?>
  4. <para>Let's now create some structure in our LFS file system, let's create
  5. a directory tree. Issuing the following commands will create a more or less
  6. standard tree:</para>
  7. <para><screen><userinput>mkdir -p /{bin,boot,dev/pts,etc/opt,home,lib,mnt,proc} &amp;&amp;
  8. mkdir -p /{root,sbin,tmp,usr/local,var,opt} &amp;&amp;
  9. for dirname in /usr /usr/local
  10. &nbsp;&nbsp;&nbsp;&nbsp;do
  11. &nbsp;&nbsp;&nbsp;&nbsp;mkdir $dirname/{bin,etc,include,lib,sbin,share,src}
  12. &nbsp;&nbsp;&nbsp;&nbsp;ln -s share/{man,doc,info} $dirname
  13. &nbsp;&nbsp;&nbsp;&nbsp;mkdir $dirname/share/{dict,doc,info,locale,man}
  14. &nbsp;&nbsp;&nbsp;&nbsp;mkdir $dirname/share/{nls,misc,terminfo,zoneinfo}
  15. &nbsp;&nbsp;&nbsp;&nbsp;mkdir $dirname/share/man/man{1,2,3,4,5,6,7,8}
  16. done &amp;&amp;
  17. mkdir /var/{lock,log,mail,run,spool} &amp;&amp;
  18. mkdir -p /var/{tmp,opt,cache,lib/misc,local} &amp;&amp;
  19. mkdir /opt/{bin,doc,include,info} &amp;&amp;
  20. mkdir -p /opt/{lib,man/man{1,2,3,4,5,6,7,8}} &amp;&amp;
  21. ln -s ../var/tmp /usr</userinput></screen></para>
  22. <para>Directories are by default created with permission mode 755, but this
  23. isn't desirable for all directories. We will make two changes: one to the home
  24. directory of root, and another to the directories for temporary files.</para>
  25. <para><screen><userinput>chmod 0750 /root &amp;&amp;
  26. chmod 1777 /tmp /var/tmp</userinput></screen></para>
  27. <para>The first mode change ensures that not just everybody can enter the
  28. <filename class="directory">/root</filename> directory -- the same
  29. a normal user would do with his or her home directory.
  30. The second mode change makes sure that any user can write to the
  31. <filename class="directory">/tmp</filename> and
  32. <filename class="directory">/var/tmp</filename> directories, but
  33. cannot remove other users's files from them. The latter is prohibited
  34. by the so-called "sticky bit" -- the highest bit in the 1777 bit mask.</para>
  35. <para>Now that the directories are created, move the source tarballs that
  36. were downloaded in Chapter 3 to some subdirectory under
  37. <filename class="directory">/usr/src</filename> (you
  38. will have to create the desired subdirectory yourself).</para>
  39. <sect2>
  40. <title>FHS compliance note</title>
  41. <para>We have based our directory tree on the FHS standard (available at
  42. <ulink url="http://www.pathname.com/fhs/"/>). Besides the above created
  43. tree this standard stipulates the existence of
  44. <filename class="directory">/usr/local/games</filename> and
  45. <filename class="directory">/usr/share/games</filename>, but we don't
  46. much like these for a base system. However, feel free to make your system
  47. FHS-compliant. As to the structure of the
  48. <filename class="directory">/usr/local/share</filename> subdirectory the FHS
  49. isn't precise, so we created here the directories that we think are needed.</para>
  50. </sect2>
  51. </sect1>