30.2.3. Der Kernel
When the kernel is loaded, it immediately initializes and configures the computer's memory and configures the various hardware attached to the system, including all processors, I/O subsystems, and storage devices. It then looks for the compressed
initramfs
image(s) in a predetermined location in memory, decompresses it directly to /sysroot/
, and loads all necessary drivers. Next, it initializes virtual devices related to the file system, such as LVM or software RAID, before completing the initramfs
processes and freeing up all the memory the disk image once occupied.
Nach dem Initialisieren aller Geräte des Systems erstellt der Kernel ein Root-Gerät, hängt die Root-Partition als schreibgeschützt ein und setzt nicht verwendeten Speicher frei.
Zu diesem Zeitpunkt ist der Kernel in den Speicher geladen und betriebsbereit. Allerdings ist das System ohne Benutzer-Applikationen, die sinnvolle Eingabe erlauben, nicht gerade von großem Nutzen.
Der Kernel startet den Befehl
/sbin/init
, um die Benutzerumgebung einzurichten.