6.8. Creating the bash and sh symlinks

Some programs hard-wire paths to programs which don't exist yet. In order to satisfy these programs, we create the symbolic links /bin/bash and /bin/sh, both pointing to the static bash program.

Create the /bin/bash and /bin/sh symlinks by running the following commands:

ln -s /static/bin/bash /bin/bash &&
ln -s bash /bin/sh