createfiles.xml 667 B

1234567891011121314151617
  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 symbolic links
  6. <filename>/bin/bash</filename> and <filename>/bin/sh</filename>, both
  7. pointing to the static <filename>bash</filename> program.</para>
  8. <para>Create the <filename>/bin/bash</filename> and <filename>/bin/sh</filename>
  9. symlinks by running the following commands:</para>
  10. <para><screen><userinput>ln -s /static/bin/bash /bin/bash &amp;&amp;
  11. ln -s bash /bin/sh</userinput></screen></para>
  12. </sect1>