| 123456789101112131415161718192021222324252627282930313233 | <sect1 id="ch06-createfiles"><title>Creating essential symlinks</title><?dbhtml filename="createfiles.html" dir="chapter06"?><para>Some programs hard-wire paths to programs which don't exist yet. Inorder to satisfy these programs, we create a number of symbolic links whichwill be replaced by real files throughout the course of this chapter whenwe're installing all the software.</para><para><screen><userinput>ln -sf /stage1/bin/bash /binln -sf bash /bin/shln -sf /stage1/bin/pwd /binln -sf /stage1/bin/perl /usr/binln -sf /stage1/bin/cat /binln -sf /stage1/bin/stty /binln -sf /stage1/bin/msgfmt /usr/binln -sf /stage1/bin/xgettext /usr/binln -sf /stage1/bin/msgmerge /usr/binln -sf /stage1/bin/install /usr/binln -sf /usr/bin/install /binln -sf /stage1/bin/echo /binln -sf /stage1/bin/sed /binln -sf /stage1/bin/awk /binln -sf /stage1/bin/rm /binln -sf /stage1/bin/mv /binln -sf /stage1/bin/chmod /binln -sf /stage1/bin/chgrp /binln -sf /stage1/bin/sort /usr/binln -sf /stage1/bin/cmp /usr/bin</userinput></screen></para></sect1>
 |