aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/createfiles.xml
diff options
context:
space:
mode:
authorTimothy Bauscher <timothy@linuxfromscratch.org>2002-09-02 15:46:18 +0000
committerTimothy Bauscher <timothy@linuxfromscratch.org>2002-09-02 15:46:18 +0000
commit4bc6304e662f1ea1806a9828d85a0866f5751f8e (patch)
treedce11eb4ca5d09e93d0fd26153d705165bf5b6ab /chapter06/createfiles.xml
parent54eee9df478c297f508b69fcb3ebfa456d73e0ab (diff)
Symlink sh to bash, and bash to /static/bin/bash. Shortened some cp commands. Changed call to less so SGR will work.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2078 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/createfiles.xml')
-rw-r--r--chapter06/createfiles.xml15
1 files changed, 8 insertions, 7 deletions
diff --git a/chapter06/createfiles.xml b/chapter06/createfiles.xml
index 8c4b76b2d..d71a19491 100644
--- a/chapter06/createfiles.xml
+++ b/chapter06/createfiles.xml
@@ -1,15 +1,16 @@
<sect1 id="ch06-createfiles">
-<title>Creating the /bin/sh symlink</title>
+<title>Creating the bash and sh symlinks</title>
<?dbhtml filename="createfiles.html" dir="chapter06"?>
-<para>Some programs hard-wire paths that don't exist yet. The only one
-which may cause us trouble is <filename>/bin/sh</filename>.
-We therefore create this for the time being and replace it
-properly when the bash package is (re)installed.</para>
+<para>Some programs hard-wire paths to programs which don't exist yet. In
+order to satisfy these programs, we create the <filename>/bin/bash</filename>
+and <filename>/bin/sh</filename> symlinks.</para>
-<para>Create the /bin/sh symlink by running the following commands:</para>
+<para>Create the /bin/bash and /bin/sh symlinks by running the following
+commands:</para>
-<para><screen><userinput>ln -s /static/bin/bash /bin/sh</userinput></screen></para>
+<para><screen><userinput>ln -s /static/bin/bash /bin/bash &amp;&amp;
+ln -s bash /bin/sh</userinput></screen></para>
</sect1>