createfiles.xml 556 B

12345678910111213141516
  1. <sect1 id="ch06-createfiles">
  2. <title>Creating the bash and sh symlinks</title>
  3. <?dbhtml filename="createfiles.html" dir="chapter06"?>
  4. <para>Some programs hard-wire paths to programs which don't exist yet. In
  5. order to satisfy these programs, we create the <filename>/bin/bash</filename>
  6. and <filename>/bin/sh</filename> symlinks.</para>
  7. <para>Create the /bin/bash and /bin/sh symlinks by running the following
  8. commands:</para>
  9. <para><screen><userinput>ln -s /static/bin/bash /bin/bash &amp;&amp;
  10. ln -s bash /bin/sh</userinput></screen></para>
  11. </sect1>