source: chapter01/how.xml@ 3a56c9a

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 3a56c9a was 3a56c9a, checked in by Pierre Labastie <pieere@…>, 4 years ago

Rewrite "How to Build an LFS System" for cross chapter 5

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/cross-chap5@11888 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

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