createfiles.xml 839 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-system-createfiles">
  8. <?dbhtml filename="createfiles.html"?>
  9. <title>Creating Essential Symlinks</title>
  10. <para>Some programs use hard-wired paths to programs which do not exist yet. In
  11. order to satisfy these programs, create a number of symbolic links which will be
  12. replaced by real files throughout the course of this chapter after the software
  13. has been installed.</para>
  14. <screen><userinput>ln -sv /tools/bin/{bash,cat,grep,pwd,stty} /bin
  15. ln -sv /tools/bin/perl /usr/bin
  16. ln -sv /tools/lib/libgcc_s.so{,.1} /usr/lib
  17. ln -sv bash /bin/sh</userinput></screen>
  18. </sect1>