May 2004
Beginner
368 pages
8h 44m
English
You now know the physical structure of a Linux system, what the kernel is, and how to work with processes. This chapter teaches you how the system starts (boots) — that is, how the kernel gets into memory and how the regular system processes get started.
As it turns out, there isn't much to the boot process:
A boot loader finds the kernel image on the disk, loads it into memory, and starts it.
The kernel initializes the devices and its drivers.
The kernel mounts the root filesystem.
The kernel starts a program called init.
init sets the rest of the processes in motion.
The last processes that init starts as part of the boot sequence allow you to log in.
Identifying each stage of the boot process is invaluable in fixing boot ...