finished 1.10
[linux_from_scratch.git] / BOOK / chapter06 / createfiles.xml
blob47ccefb9046eaf680e700a3d6e1511ded9f495cc
1 <sect1 id="ch06-createfiles">
2 <title>Creating the bash and sh symlinks</title>
3 <?dbhtml filename="createfiles.html" dir="chapter06"?>
5 <para>Some programs hard-wire paths to programs which don't exist yet. In
6 order to satisfy these programs, we create the symbolic links
7 <filename>/bin/bash</filename> and <filename>/bin/sh</filename>, both
8 pointing to the static <filename>bash</filename> program.</para>
10 <para>Create the <filename>/bin/bash</filename> and <filename>/bin/sh</filename>
11 symlinks by running the following commands:</para>
13 <para><screen><userinput>ln -s /static/bin/bash /bin/bash &amp;&amp;
14 ln -s bash /bin/sh</userinput></screen></para>
16 </sect1>