mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-20 14:07:39 +00:00
1987d724ce
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1897 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
18 lines
644 B
XML
18 lines
644 B
XML
<sect1 id="ch06-createfiles">
|
|
<title>Creating a few missing files</title>
|
|
<?dbhtml filename="createfiles.html" dir="chapter06"?>
|
|
|
|
<para>A few files need to be created because programs hard-wire paths
|
|
that don't exist yet. The most frequently ones used are
|
|
<filename>/bin/sh</filename> and <filename>/dev/null</filename> so we'll be
|
|
creating those for the time being and replace them properly when the file's
|
|
package is (re)installed.</para>
|
|
|
|
<para>Create the files by running the following commands:</para>
|
|
|
|
<para><screen><userinput>ln -s /static/bin/bash /bin/sh &&
|
|
mknod -m 0666 /dev/null c 1 3</userinput></screen></para>
|
|
|
|
</sect1>
|
|
|