how.xml 4.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
  3. <!ENTITY % general-entities SYSTEM "../general.ent">
  4. %general-entities;
  5. ]>
  6. <sect1 id="ch-scatter-how">
  7. <title>How things are going to be done</title>
  8. <?dbhtml filename="how.html"?>
  9. <para>See testing</para>
  10. <!--
  11. <para>You are going to build your LFS system by using a previously installed
  12. Linux distribution (such as Debian, Mandrake, Red Hat, or SuSE). This existing
  13. Linux system (the host) will be used as a starting point, because you will need
  14. programs like a compiler, linker and shell to build the new system. Normally
  15. all the required tools are available if you selected <quote>development</quote>
  16. as one of the options when you installed your distribution.</para>
  17. <para>In <xref linkend="chapter-partitioning"/> you will first create a new Linux native
  18. partition and file system, the place where your new LFS system will be compiled
  19. and installed. Then in <xref linkend="chapter-getting-materials"/> you download all the
  20. packages and patches needed to build an LFS system, and store them on the new
  21. file system. In <xref linkend="chapter-final-preps"/> you set up a good
  22. environment to work in.</para>
  23. <para><xref linkend="chapter-temporary-tools"/> then discusses the installation of a number
  24. of packages that will form the basic development suite (or <emphasis>toolchain</emphasis>) which is
  25. used to build the actual system in <xref linkend="chapter-building-system"/>. Some of these
  26. packages are needed to resolve circular dependencies - for example, to compile
  27. a compiler you need a compiler.</para>
  28. <para>The first thing to be done in <xref linkend="chapter-temporary-tools"/> is build a
  29. first pass of the toolchain, made up of Binutils and GCC. The programs from
  30. these packages will be linked statically in order for them to be usable
  31. independently of the host system. The second thing to do is build Glibc, the
  32. C library. Glibc will be compiled by the toolchain programs just built in
  33. the first pass. The third thing to do is build a second pass of the toolchain.
  34. This time the toolchain will be dynamically linked against the newly built
  35. Glibc. The remaining <xref linkend="chapter-temporary-tools"/> packages are all built using
  36. this second pass toolchain and dynamically linked against the new
  37. host-independent Glibc. When this is done, the LFS installation process will no
  38. longer depend on the host distribution, with the exception of the running
  39. kernel.</para>
  40. <para>You may be thinking that <quote>this seems like a lot of work, just to
  41. get away from my host distribution</quote>. Well, a full technical explanation
  42. is provided at the start of <xref linkend="chapter-temporary-tools"/>, including some notes
  43. on the differences between statically and dynamically linked programs.</para>
  44. <para>In <xref linkend="chapter-building-system"/> your real LFS system will be built. The
  45. <command>chroot</command> (change root) program is used to enter a virtual environment and start
  46. a new shell whose root directory will be set to the LFS partition. This is very
  47. similar to rebooting and instructing the kernel to mount the LFS partition as
  48. the root partition. The reason that you don't actually reboot, but instead
  49. chroot, is that creating a bootable system requires additional work which isn't
  50. necessary just yet. But the major advantage is that <quote>chrooting</quote> allows you to
  51. continue using the host while LFS is being built. While waiting for package
  52. compilation to complete, you can simply switch to a different VC (Virtual
  53. Console) or X desktop and continue using the computer as you normally
  54. would.</para>
  55. <para>To finish the installation, the bootscripts are set up in
  56. <xref linkend="chapter-bootscripts"/>, the kernel and bootloader are set up in
  57. <xref linkend="chapter-bootable"/>, and <xref linkend="chapter-finalizing"/> contains some
  58. pointers to help you after you finish the book. Then, finally, you're ready to
  59. reboot your computer into your new LFS system.</para>
  60. <para>This is the process in a nutshell. Detailed information on the steps you
  61. will take are discussed in the chapters and package descriptions as you
  62. progress through them. If something isn't completely clear now, don't worry,
  63. everything will fall into place soon.</para>
  64. <para>Please read <xref linkend="chapter-final-preps"/> carefully as it explains
  65. a few important things you should be aware of before you begin to work through
  66. <xref linkend="chapter-temporary-tools"/> and beyond.</para>
  67. -->
  68. </sect1>