LDP/LDP/retired/LFS/chapter06/createfiles.xml

17 lines
579 B
XML
Raw Permalink Normal View History

2002-10-07 16:13:07 +00:00
<sect1 id="ch06-createfiles">
2003-11-06 15:49:30 +00:00
<title>Creating essential symlinks</title>
2002-10-07 16:13:07 +00:00
<?dbhtml filename="createfiles.html" dir="chapter06"?>
<para>Some programs hard-wire paths to programs which don't exist yet. In
2003-11-06 15:49:30 +00:00
order to satisfy these programs, we create a number of symbolic links which
will be replaced by real files throughout the course of this chapter when
we're installing all the software.</para>
2002-10-07 16:13:07 +00:00
2003-11-06 15:49:30 +00:00
<screen><userinput>ln -s /tools/bin/{bash,cat,pwd,stty} /bin
ln -s /tools/bin/perl /usr/bin
ln -s /tools/lib/libgcc_s.so.1 /usr/lib
ln -s bash /bin/sh</userinput></screen>
2002-10-07 16:13:07 +00:00
</sect1>