blob: d71a1949175689605bd0f396513359eecbefb844 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<sect1 id="ch06-createfiles">
<title>Creating the bash and sh symlinks</title>
<?dbhtml filename="createfiles.html" dir="chapter06"?>
<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/bash and /bin/sh symlinks by running the following
commands:</para>
<para><screen><userinput>ln -s /static/bin/bash /bin/bash &&
ln -s bash /bin/sh</userinput></screen></para>
</sect1>
|