diff options
Diffstat (limited to 'chapter06/createfiles.xml')
-rw-r--r-- | chapter06/createfiles.xml | 15 |
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 && +ln -s bash /bin/sh</userinput></screen></para> </sect1> |