source: chapter06/creatingdirs.xml@ c310ddd

Last change on this file since c310ddd was df9efd24, checked in by Matthew Burgess <matthew@…>, 19 years ago

Create a /lib/firmware directory

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/udev_update/BOOK@7341 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 3.3 KB
Line 
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
8<sect1 id="ch-system-creatingdirs">
9 <?dbhtml filename="creatingdirs.html"?>
10
11 <title>Creating Directories</title>
12
13 <para>It is time to create some structure in the LFS file system. Create a
14 standard directory tree by issuing the following commands:</para>
15
16<screen><userinput>install -dv /{bin,boot,dev,etc/opt,home,lib,mnt}
17install -dv /{sbin,srv,usr/local,var,opt}
18install -dv /root -m 0750
19install -dv /tmp /var/tmp -m 1777
20install -dv /media/{floppy,cdrom}
21install -dv /usr/{bin,include,lib,sbin,share,src}
22ln -sv share/{man,doc,info} /usr
23install -dv /usr/share/{doc,info,locale,man}
24install -dv /usr/share/{misc,terminfo,zoneinfo}
25install -dv /usr/share/man/man{1..8}
26install -dv /usr/local/{bin,etc,include,lib,sbin,share,src}
27ln -sv share/{man,doc,info} /usr/local
28install -dv /usr/local/share/{doc,info,locale,man}
29install -dv /usr/local/share/{misc,terminfo,zoneinfo}
30install -dv /usr/local/share/man/man{1,2,3,4,5,6,7,8}
31install -dv /var/{lock,log,mail,run,spool}
32install -dv /var/{opt,cache,lib/{misc,locate},local}
33install -dv /opt/{bin,doc,include,info}
34install -dv /opt/{lib,man/man{1,2,3,4,5,6,7,8}}
35install -dv /lib/{firmware,udev/devices}</userinput></screen>
36
37 <para>Directories are, by default, created with permission mode 755, but
38 this is not desirable for all directories. In the commands above, two
39 changes are made&mdash;one to the home directory of user <systemitem
40 class="username">root</systemitem>, and another to the directories for
41 temporary files.</para>
42
43 <para>The first mode change ensures that not just anybody can enter
44 the <filename class="directory">/root</filename> directory&mdash;the
45 same as a normal user would do with his or her home directory. The
46 second mode change makes sure that any user can write to the
47 <filename class="directory">/tmp</filename> and <filename
48 class="directory">/var/tmp</filename> directories, but cannot remove
49 another user's files from them. The latter is prohibited by the so-called
50 <quote>sticky bit,</quote> the highest bit (1) in the 1777 bit mask.</para>
51
52 <note>
53 <para>Notice the two different constructions above for creating multiple
54 man directories: <command>install -d /usr/share/man/man{1..8}</command> and
55 <command>install -d /usr/local/share/man/man{1,2,3,4,5,6,7,8}</command>. The
56 first one is new since Bash 3.0. This new feature will help make repetitive
57 commands easier to type.</para>
58 </note>
59
60 <sect2>
61 <title>FHS Compliance Note</title>
62
63 <para>The directory tree is based on the Filesystem Hierarchy Standard
64 (FHS) (available at <ulink url="http://www.pathname.com/fhs/"/>). In
65 addition to the tree created above, this standard stipulates the existence
66 of <filename class="directory">/usr/local/games</filename> and <filename
67 class="directory">/usr/share/games</filename>. The FHS is not precise as to
68 the structure of the <filename class="directory">/usr/local/share</filename>
69 subdirectory, so we create only the directories that are needed. However,
70 feel free to create these directories if you prefer to conform more strictly
71 to the FHS.</para>
72
73 </sect2>
74
75</sect1>
Note: See TracBrowser for help on using the repository browser.