creatingdirs.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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,shm},etc/opt,home,lib,mnt,proc}
  8. mkdir -p /{root,sbin,tmp,usr/local,var,opt}
  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
  17. mkdir /var/{lock,log,mail,run,spool}
  18. mkdir -p /var/{tmp,opt,cache,lib/misc,local}
  19. mkdir /opt/{bin,doc,include,info}
  20. mkdir -p /opt/{lib,man/man{1,2,3,4,5,6,7,8}}</userinput></screen></para>
  21. <para>Directories are, by default, created with permission mode 755, but this
  22. isn't desirable for all directories. We will make two changes: one to the home
  23. directory of root, and another to the directories for temporary files.</para>
  24. <para><screen><userinput>chmod 0750 /root
  25. chmod 1777 /tmp /var/tmp</userinput></screen></para>
  26. <para>The first mode change ensures that not just anybody can enter the
  27. <filename class="directory">/root</filename> directory -- the same
  28. as a normal user would do with his or her home directory.
  29. The second mode change makes sure that any user can write to the
  30. <filename class="directory">/tmp</filename> and
  31. <filename class="directory">/var/tmp</filename> directories, but
  32. cannot remove other users' files from them. The latter is prohibited
  33. by the so-called "sticky bit" -- the highest bit in the 1777 bit mask.</para>
  34. <sect2>
  35. <title>FHS compliance note</title>
  36. <para>We have based our directory tree on the FHS standard (available at
  37. <ulink url="http://www.pathname.com/fhs/"/>). Besides the above created
  38. tree this standard stipulates the existence of
  39. <filename class="directory">/usr/local/games</filename> and
  40. <filename class="directory">/usr/share/games</filename>, but we don't
  41. much like these for a base system. However, feel free to make your system
  42. FHS-compliant. As to the structure of the
  43. <filename class="directory">/usr/local/share</filename> subdirectory, the FHS
  44. isn't precise, so we created here the directories that we think are needed.</para>
  45. </sect2>
  46. </sect1>