how.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-intro-how">
  8. <?dbhtml filename="how.html"?>
  9. <title>How to Build an LFS System</title>
  10. <para>The LFS system will be built by using an already installed
  11. Linux distribution (such as Debian, OpenMandriva, Fedora, or openSUSE). This
  12. existing Linux system (the host) will be used as a starting point to
  13. provide necessary programs, including a compiler, linker, and shell,
  14. to build the new system. Select the <quote>development</quote> option
  15. during the distribution installation to be able to access these
  16. tools.</para>
  17. <para>As an alternative to installing a separate distribution onto your
  18. machine, you may wish to use <!-- the Linux From Scratch LiveCD or --> a LiveCD from a
  19. commercial distribution. <!-- The LFS LiveCD works well as a host system,
  20. providing all the tools you need to successfully follow the instructions in
  21. this book. The LiveCD version is behind the current book, but is still useful
  22. as a host for building the current book. The <quote>-nosrc</quote> or
  23. <quote>-min</quote> editions of the LiveCD are the most appropriate for
  24. building a current LFS system. For more information about the LFS LiveCD or
  25. to download a copy, visit <ulink url="&livecd-root;"/>. --></para>
  26. <!--
  27. <note>
  28. <para>The LFS LiveCD might not work on newer hardware configurations,
  29. failing to boot or failing to detect some devices such as some SATA hard
  30. drives.</para>
  31. </note> -->
  32. <para><xref linkend="chapter-partitioning"/> of this book describes how
  33. to create a new Linux native partition and file system. This is the place
  34. where the new LFS system will be compiled and installed. <xref
  35. linkend="chapter-getting-materials"/> explains which packages and
  36. patches need to be downloaded to build an LFS system and how to store
  37. them on the new file system. <xref linkend="chapter-final-preps"/>
  38. discusses the setup of an appropriate working environment. Please read
  39. <xref linkend="chapter-final-preps"/> carefully as it explains several
  40. important issues you need be aware of before beginning to
  41. work your way through <xref linkend="chapter-temporary-tools"/> and beyond.</para>
  42. <para><xref linkend="chapter-temporary-tools"/> explains the installation of
  43. a number of packages that are needed to resolve circular
  44. dependencies&mdash;for example, to compile a compiler, you need a compiler.
  45. or to unpack the tar package, you need tar.</para>
  46. <para><xref linkend="chapter-temporary-tools"/> also shows you how to
  47. build a C cross-compiling toolchain as a first step, including binutils
  48. and GCC. Cross-compiling is not absolutely needed since the machine we'll
  49. run LFS on is the same as the one we build on, but it has the advantage
  50. of clearly separating the already installed system and the future LFS one.
  51. The next step is to build Glibc, the C library. Glibc will be compiled by
  52. the toolchain programs built previously. Then, the missing bits for a
  53. C++ cross-compiling toolchain will be built. It is then possible to build
  54. packages that are needed to resolve circular dependencies in such a way
  55. that the produced executables and libraries are completely independent
  56. from the installed distribution.</para>
  57. <para>The remainder of <xref linkend="chapter-temporary-tools"/> adds
  58. the packages necessary to get a complete build environment. This is done
  59. after running the <command>chroot</command> (change root) program to enter
  60. a virtual environment and start a new shell whose root directory will be
  61. set to the LFS partition. This is very similar to rebooting and instructing
  62. the kernel to mount the LFS partition as the root partition. The system
  63. does not actually reboot, but instead uses <command>chroot</command>
  64. because creating a bootable system requires additional work which is not
  65. ecessary just yet. The major advantage is that <quote>chrooting</quote>
  66. allows to isolate the build process from the installed distribution, while
  67. using the installed kernel.</para>
  68. <para>This effort to isolate the new system from the host distribution may
  69. seem excessive. A full technical explanation as to why this is done is
  70. provided in <xref linkend="ch-tools-toolchaintechnotes"/>.</para>
  71. <para>In <xref linkend="chapter-building-system"/>, The
  72. full LFS system is built. Another advantage provided by the chroot
  73. environment is that it allows you to continue using the host system
  74. while LFS is being built. While waiting for package compilations to
  75. complete, you can continue using your computer as normal.</para>
  76. <para>To finish the installation, the basic system configuration is set up in
  77. <xref linkend="chapter-config"/>, and the kernel and boot loader are set
  78. up in <xref linkend="chapter-bootable"/>. <xref linkend="chapter-finalizing"/>
  79. contains information on continuing the LFS experience beyond this book.
  80. After the steps in this book have been implemented, the computer will be
  81. ready to reboot into the new LFS system.</para>
  82. <para>This is the process in a nutshell. Detailed information on each
  83. step is discussed in the following chapters and package descriptions.
  84. Items that may seem complicated will be clarified, and everything will
  85. fall into place as you embark on the LFS adventure.</para>
  86. </sect1>