source: chapter08/kernel.xml@ 4a80bec

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 6.0 6.1 6.1.1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 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 4a80bec was 9dfc02f, checked in by Zack Winkles <winkie@…>, 20 years ago

Current BE-LFS (but w/ GCC 3.3.3) merged -> 6.0 branch

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3445 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 7.2 KB
Line 
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-bootable-kernel" xreflabel="Linux">
7<title>Linux-&linux-version;</title>
8<?dbhtml filename="kernel.html"?>
9
10<indexterm zone="ch-bootable-kernel"><primary sortas="a-Linux">Linux</primary></indexterm>
11
12<para>The Linux package contains the kernel and the header files.</para>
13
14<screen>&buildtime; All default options: 4.20 SBU
15&diskspace; All default options: 181 MB</screen>
16
17<para>Linux installation depends on: Bash, Binutils, Coreutils, Findutils,
18GCC, Glibc, Grep, Gzip, Make, Modutils, Perl, Sed.</para>
19
20
21
22<sect2>
23<title>Installation of the kernel</title>
24
25<para>Building the kernel involves a few steps: configuration, compilation, and
26installation. If you don't like the way this book configures the kernel, view
27the <filename>README</filename> file in the kernel source tree for alternative
28methods.</para>
29
30<para>Prepare for compilation by running the following command:</para>
31
32<screen><userinput>make mrproper</userinput></screen>
33
34<para>This ensures that the kernel tree is absolutely clean. The kernel team
35recommends that this command be issued prior to <emphasis>each</emphasis>
36kernel compilation. You shouldn't rely on the source tree being clean after
37un-tarring.</para>
38
39<para>Configure the kernel via a menu-driven interface:</para>
40
41<screen><userinput>make menuconfig</userinput></screen>
42
43<para><userinput>make oldconfig</userinput> may be more appropriate in some
44situations. See the <filename>README</filename> file for more
45information.</para>
46
47<para>If you wish, you may skip kernel configuration by simply copying the
48kernel config file, <filename>.config</filename>, from your host system
49(assuming it is available) to the unpacked <filename class="directory">linux-&linux-version;</filename>
50directory. However, we
51don't recommend this option. You're much better off exploring all the
52configuration menus and creating your own kernel configuration from
53scratch.</para>
54
55<para>For POSIX shared memory support, ensure that the kernel config option
56<quote>Virtual memory file system support</quote> is enabled. It resides within
57the <quote>File systems</quote> menu and is normally enabled by default.</para>
58
59<note><para>NPTL requires the kernel to be compiled with GCC 3.x, in this case
60&gcc-version;. Compiling with 2.95.x is known to cause failures in the glibc
61testsuite, so do <emphasis>not</emphasis> compile the kernel with gcc 2.95.x
62unless you know what you're getting yourself into.</para></note>
63
64<para>Compile the kernel image and modules:</para>
65
66<screen><userinput>make</userinput></screen>
67
68<para>If you intend to use kernel modules, you will need an
69<filename>/etc/modprobe.conf</filename> file. Information pertaining
70to modules and to kernel configuration in general may be found in the
71kernel documentation, which is found in the
72<filename>linux-&linux-version;/Documentation</filename> directory. The
73modules.conf man page and the kernel HOWTO at
74<ulink url="http://www.tldp.org/HOWTO/Kernel-HOWTO.html"/> may also be of
75interest to you.</para>
76
77<para>Install the modules:</para>
78
79<screen><userinput>make modules_install</userinput></screen>
80
81<para>If you have a lot of modules and very little space, you may want to
82consider stripping and compressing the modules. For most people such compression
83isn't worth the trouble, but if you're really pressed for space, then have a look at
84<ulink url="http://www.linux-mips.org/archives/linux-mips/2002-04/msg00031.html"/>.</para>
85
86<para>Kernel compilation has finished but more steps are required to complete
87the installation. Some files need to be copied to the <filename>/boot</filename>
88directory.</para>
89
90<para>The path to the kernel image may vary depending on the platform you're
91using. Issue the following command to install the kernel:</para>
92
93<screen><userinput>cp arch/i386/boot/bzImage /boot/lfskernel-&linux-version;</userinput></screen>
94
95<para><filename>System.map</filename> is a symbol file for the kernel. It maps
96the function entry points of every function in the kernel API (Application Programming Interface), as well as the
97addresses of the kernel data structures for the running kernel. Issue the
98following command to install the map file:</para>
99
100<screen><userinput>cp System.map /boot/System.map-&linux-version;</userinput></screen>
101
102<para><filename>.config</filename> is the kernel configuration file that was
103produced by the <command>make menuconfig</command> step above. It contains all
104the config selections for the kernel that was just compiled. It's a good idea
105to keep this file for future reference:</para>
106
107<screen><userinput>cp .config /boot/config-&linux-version;</userinput></screen>
108
109<para>It is important to note that the files in the kernel source directory are
110not owned by <emphasis>root</emphasis>. Whenever you unpack a package as user
111<emphasis>root</emphasis> (like we did here inside chroot), the files end up
112having the user and group IDs of whatever they were on the packager's computer.
113This is usually not a problem for any other package you install because you
114remove the source tree after the installation. But the Linux source tree is
115often kept around for a long time, so there's a chance that whatever user ID
116the packager used will be assigned to somebody on your machine and then that
117person would have write access to the kernel source.</para>
118
119<para>If you are going to keep the kernel source tree around, you may want to
120run <userinput>chown -R 0:0</userinput> on the
121<filename>linux-2.4.25</filename> directory to ensure all files are
122owned by user <emphasis>root</emphasis>.</para>
123
124</sect2>
125
126
127<sect2 id="contents-kernel"><title>Contents of Linux</title>
128
129<para><emphasis>Installed files</emphasis>: the kernel, the kernel headers,
130and the System.map</para>
131
132</sect2>
133
134<sect2><title>Short descriptions</title>
135
136<indexterm zone="ch-bootable-kernel kernel"><primary sortas="b-kernel">kernel</primary></indexterm>
137<para id="kernel">The <emphasis>kernel</emphasis> is the engine of your GNU/Linux system.
138When switching on your box, the kernel is the first part of your operating
139system that gets loaded. It detects and initializes all the components of your
140computer's hardware, then makes these components available as a tree of files
141to the software, and turns a single CPU into a multi-tasking machine capable
142of running scores of programs seemingly at the same time.</para>
143
144<indexterm zone="ch-bootable-kernel kernel-headers"><primary sortas="e-kernel-headers">kernel headers</primary></indexterm>
145<para id="kernel-headers">The <emphasis>kernel headers</emphasis> define the interface to the
146services that the kernel provides. The headers in your system's
147<filename>include</filename> directory should <emphasis>always</emphasis> be
148the ones against which Glibc was compiled and should therefore
149<emphasis>not</emphasis> be replaced when upgrading the kernel.</para>
150
151<indexterm zone="ch-bootable-kernel System.map"><primary sortas="e-/boot/System.map">/boot/System.map</primary></indexterm>
152<para id="System.map">The <filename>System.map</filename> file is a list of addresses and
153symbols. It maps the entry points and addresses of all the functions and data
154structures in the kernel.</para>
155
156</sect2>
157
158
159
160</sect1>
Note: See TracBrowser for help on using the repository browser.