source: chapter03/creatingdirs.xml@ edc3f31

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.0 6.1 6.1.1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk v3_0 v3_1 v3_2 v3_3 v4_0 v4_1 v5_0 v5_1 v5_1_1 xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since edc3f31 was edc3f31, checked in by Thomas Balu Walter <tw@…>, 23 years ago

just another small linking-change

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

  • Property mode set to 100644
File size: 3.2 KB
Line 
1<sect1 id="ch04-creatingdirs">
2<title>Creating directories</title>
3
4<para>
5Let's create the directory tree on the LFS partition based on the FHS
6standard, which can be found at <ulink
7url="http://www.pathname.com/fhs/">http://www.pathname.com/fhs/</ulink>.
8Issuing the following commands will create a default directory layout:
9</para>
10
11<blockquote><literallayout>
12 <userinput>cd $LFS</userinput>
13 <userinput>mkdir -p bin boot dev/pts etc/opt home lib mnt proc
14 root sbin tmp var opt</userinput>
15 <userinput>for dirname in $LFS/usr $LFS/usr/local</userinput>
16 <userinput><literal>&nbsp;&nbsp;&nbsp;do</literal></userinput>
17 <userinput>&nbsp;&nbsp;&nbsp;mkdir $dirname</userinput>
18 <userinput>&nbsp;&nbsp;&nbsp;cd $dirname</userinput>
19 <userinput>&nbsp;&nbsp;&nbsp;mkdir bin etc include lib sbin share
20 src var</userinput>
21 <userinput>&nbsp;&nbsp;&nbsp;ln -s share/man man</userinput>
22 <userinput>&nbsp;&nbsp;&nbsp;ln -s share/doc doc</userinput>
23 <userinput>&nbsp;&nbsp;&nbsp;ln -s share/info info</userinput>
24 <userinput>&nbsp;&nbsp;&nbsp;cd $dirname/share</userinput>
25 <userinput>&nbsp;&nbsp;&nbsp;mkdir dict doc info locale man nls misc
26 terminfo zoneinfo</userinput>
27 <userinput>&nbsp;&nbsp;&nbsp;cd $dirname/share/man</userinput>
28 <userinput>&nbsp;&nbsp;&nbsp;mkdir man1 man2 man3 man4 man5 man6 man7
29 man8</userinput>
30 <userinput>done</userinput>
31 <userinput>cd $LFS/var</userinput>
32 <userinput>mkdir -p lock log mail run spool tmp opt cache lib/misc
33 local</userinput>
34 <userinput>cd $LFS/opt</userinput>
35 <userinput>mkdir bin doc include info lib man</userinput>
36 <userinput>cd $LFS/usr</userinput>
37 <userinput>ln -s ../var/tmp</userinput>
38</literallayout></blockquote>
39
40<para>
41Normally, directories are created with permission mode 755, which isn't
42desired for all directories. The first change is a mode 0750 for the
43$LFS/root directory. This is to make sure that not just everybody can
44enter the /root directory (the same a user would do with /home/username
45directories). The second change is a mode 1777 for the tmp
46directories. This way, any user can write data to the /tmp or /var/tmp
47directory but cannot remove another user's files (the latter is caused
48by the so-called "sticky bit" - bit 1 of the 1777 bit mask).
49</para>
50
51<blockquote><literallayout>
52 <userinput>cd $LFS &amp;&amp;</userinput>
53 <userinput>chmod 0750 root &amp;&amp;</userinput>
54 <userinput>chmod 1777 tmp var/tmp</userinput>
55</literallayout></blockquote>
56
57<para>
58Now that the directories are created, copy the source files that were
59downloaded in chapter 3 to some subdirectory under $LFS/usr/src (you
60will need to create the desired directory yourself).
61</para>
62
63<sect2>
64<title>FHS compliance notes</title>
65
66<para>
67The FHS stipulates that the /usr/local directory should contain the bin, games,
68include, lib, man, sbin, and share subdirectories. You can alter your /usr/local
69directory yourself if you want your system to be FHS-compliant.
70</para>
71
72<para>
73Also, the standard says that there should exist a /usr/share/games directory,
74which we don't much like for a base system. But feel free to make your system
75FHS-compliant if you wish. The FHS isn't precise as to the structure of the
76/usr/local/share subdirectories, so we took the liberty of creating the
77directories that we felt needed.
78</para>
79
80</sect2>
81
82</sect1>
83
Note: See TracBrowser for help on using the repository browser.