introduction.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <sect1 id="ch05-introduction">
  2. <title>Introduction</title>
  3. <?dbhtml filename="introduction.html" dir="chapter05"?>
  4. <para>In this chapter we will compile and install a minimal
  5. Linux system. This system will contain just enough tools to be able
  6. to start constructing the final LFS system in the next chapter.</para>
  7. <para>The files compiled in this chapter will be installed under the
  8. <filename class="directory">$LFS/static</filename> directory,
  9. to keep them separate from the files installed in the next chapter.
  10. Since the packages compiled here are merely temporary, we don't want
  11. them to pollute the soon-to-be LFS system.</para>
  12. <para>The key to learning what makes a Linux system work is to know
  13. exactly what each package is used for, and why the user or the system
  14. needs it. For this purpose a short description of the content of each
  15. package is given right after the installation instructions.</para>
  16. <para>Many of our packages must be patched before they can be compiled.
  17. We only apply patches when and where they are needed. So, don't fret if
  18. it seems like instructions for a patch are missing.</para>
  19. <para>During the installation of several packages you will probably
  20. see all kinds of compiler warnings scroll by on your screen. These are
  21. normal and can be safely ignored. They are just what they say they are:
  22. warnings -- mostly about improper, but not illegal, use of the C or C++
  23. syntax. It's just that C standards have changed rather often and some
  24. packages still use the older standard, which is not really a problem.</para>
  25. <para>Before you start, make sure the LFS environment variable is set up
  26. properly if you decided to make use of it. Run the following:</para>
  27. <para><screen><userinput>echo $LFS</userinput></screen></para>
  28. <para>Check to make sure the output contains the correct directory to the LFS
  29. partition's mount point (/mnt/lfs for example).</para>
  30. </sect1>