introduction.xml 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
  3. <!ENTITY % general-entities SYSTEM "../general.ent">
  4. %general-entities;
  5. ]>
  6. <sect1 id="ch-system-introduction">
  7. <title>Introduction</title>
  8. <?dbhtml filename="introduction.html"?>
  9. <para>In this chapter, we enter the building site and start
  10. constructing the LFS system in earnest. That is, we chroot into the
  11. temporary mini Linux system, make a few final preparations, and then
  12. begin installing the packages.</para>
  13. <para>The installation of this software is straightforward. Although
  14. in many cases the installation instructions could be made shorter and
  15. more generic, we have opted to provide the full instructions for every
  16. package to minimize the possibilities for mistakes. The key to
  17. learning what makes a Linux system work is to know what each package
  18. is used for and why the user (or the system) needs it. For every
  19. installed package, a summary of its contents is given, followed by
  20. concise descriptions of each program and library the package
  21. installed.</para>
  22. <para>If using the compiler optimizations provided in this chapter,
  23. please review the optimization hint at <ulink
  24. url="&hints-root;optimization.txt"/>. Compiler optimizations can make
  25. a program run slightly faster, but they may also cause compilation
  26. difficulties and problems when running the program. If a package
  27. refuses to compile when using optimization, try to compile it without
  28. optimization and see if that fixes the problem. Even if the package
  29. does compile when using optimization, there is the risk it may have
  30. been compiled incorrectly because of the complex interactions between
  31. the code and build tools. The small potential gains achieved in using
  32. compiler optimizations are often outweighed by the risks. First-time
  33. builders of LFS are encouraged to build without custom optimizations.
  34. The subsequent system will still run very fast and be stable at the
  35. same time.</para>
  36. <para>The order that packages are installed in this chapter needs to
  37. be strictly followed to ensure that no program accidentally acquires a
  38. path referring to <filename class="directory">/tools</filename>
  39. hard-wired into it. For the same reason, do not compile packages in
  40. parallel. Compiling in parallel may save time (especially on dual-CPU
  41. machines), but it could result in a program containing a hard-wired
  42. path to <filename class="directory">/tools</filename>, which will
  43. cause the program to stop working when that directory is
  44. removed.</para>
  45. <para>Before the installation instructions, each installation page
  46. provides information about the package, including a concise
  47. description of what it contains, approximately how long it will take
  48. to build, how much disk space is required during this building
  49. process, and any other packages needed to successfully build the
  50. package. Following the installation instructions, there is a list of
  51. programs and libraries (along with brief descriptions of these) that
  52. the package installs.</para>
  53. <para>To keep track of which package installs particular files, a package
  54. manager can be used. For a general overview of different styles of package
  55. managers, please refer to <ulink
  56. url="&blfs-root;view/svn/introduction/important.html"/>.
  57. For a package management method specifically geared towards LFS, we recommend <ulink
  58. url="&hints-root;more_control_and_pkg_man.txt"/>.</para>
  59. <note><para>The remainder of this book is to be performed while logged
  60. in as user <emphasis>root</emphasis> and no longer as user
  61. <emphasis>lfs</emphasis>.</para></note>
  62. </sect1>