aboutsummaryrefslogtreecommitdiffstats
path: root/chapter07
diff options
context:
space:
mode:
authorBruce Dubbs <bdubbs@linuxfromscratch.org>2020-08-04 20:14:32 +0000
committerBruce Dubbs <bdubbs@linuxfromscratch.org>2020-08-04 20:14:32 +0000
commitba82c18266bee10819e8a3cc2e8db8aaac6e1ff3 (patch)
treef34442fc9441fa966c7a56b7ca8e9d33c4a90e54 /chapter07
parent17ca5488d27f8e05df3740ba4018082e70adb223 (diff)
Update to gettext-0.21.
Update to binutils-2.35. Update to gcc-10.2.0. Update to check-0.15.1. Update to bison-3.7.1. Update to util-linux 2.36.0. Update to libcap-2.42. Update to linux-5.7.12. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@12007 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter07')
-rw-r--r--chapter07/chapter07.xml2
-rw-r--r--chapter07/creatingdirs.xml8
2 files changed, 7 insertions, 3 deletions
diff --git a/chapter07/chapter07.xml b/chapter07/chapter07.xml
index aba235220..6ffd96471 100644
--- a/chapter07/chapter07.xml
+++ b/chapter07/chapter07.xml
@@ -18,8 +18,8 @@
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="creatingdirs.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="createfiles.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libstdc++-pass2.xml"/>
- <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bison.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="gettext.xml"/>
+ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bison.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="perl.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="python.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="texinfo.xml"/>
diff --git a/chapter07/creatingdirs.xml b/chapter07/creatingdirs.xml
index f8e2d3d0b..28ef34a3f 100644
--- a/chapter07/creatingdirs.xml
+++ b/chapter07/creatingdirs.xml
@@ -15,6 +15,10 @@
<para>Create some root-level directories that are not in the limited set
required in the previous chapters by issuing the following command:</para>
+ <note><para>Some of the directories below have already been created earlier
+ with explicit instructions or when installing some packages. They are
+ repeated below for completeness.</para></note>
+
<screen><userinput>mkdir -pv /{boot,home,mnt,opt,srv}</userinput></screen>
<para>Create the required set of subdirectories below the root-level by
@@ -30,8 +34,8 @@ mkdir -pv /usr/{,local/}share/man/man{1..8}
mkdir -pv /var/{cache,local,log,mail,opt,spool}
mkdir -pv /var/lib/{color,misc,locate}
-ln -sv /run /var/run
-ln -sv /run/lock /var/lock
+ln -sfv /run /var/run
+ln -sfv /run/lock /var/lock
install -dv -m 0750 /root
install -dv -m 1777 /tmp /var/tmp</userinput></screen>