marp | paginate | color | backgroundColor | header | footer | author |
---|---|---|---|---|---|---|
true |
true |
 |
**28/10/2021 - AnthonyF** |
AnthonyF |
- Importance of understanding Linux startup
- Main process during Linux startup
- Some commands to manipulate Linux runlevel
- Good for knowledge
- Being able to configure and resolve startup issues
- Boot
- ==> When the computer is turned on, and completed when the kernel is initialized and systemd is launched.
- Startup
- ==> When the booting sequence is over and it launches all the process necessary of making the computer operational for the user.
boot and startup sequences are composed of 6 steps :
- BIOS (POST)
- MBR
- Bootloader (GRUB2)
- Kernel (Linux)
- Init (Systemd)
- Runlevel and scripts
- Stored in EEPROM (Electrically-Erasable Programmable Read-only Memory).
- Written in Assembly Language.
- First interaction with the physical material.
- Loads and executes the 512 bytes of the disk (MBR).
Nowadays the BIOS is replaced by UEFI (Unified Extensible Firmware Interface)
- Contains Bootstrap code which contains information about the boot loader (446 bytes).
- Partitions table to index all the partitions of the disk (64 bytes).
- Boot signature to check if the disk is bootable or not (2 bytes).
- Loads all the available operating system or other boot loaders.
- Loads and executes automatically the default Linux kernel (vmlinuz) and initrd (inital ramdisk) images.
- Contains all the additional modules and drivers for the kernel.
- The Linux kernel first mounts the root file system set in
grub.conf
in the lineroot=
. - Then executes the
/sbin/init
program as the fisrt program with root privileges which executes some others scripts.
Init has the PID (Process IDentifier) of 1.
- Establishes a temporary root file system with initrd until the real file system is mounted. It also contains necessary drivers compiled inside.
- init program reads its initialization files which are in /etc/init.d/ (/etc/inittab before with SysV).
- It sets everything the system needs for its initialization. Then it set the default run level.
There are 7 run level from 0 to 1 :
Level | Description |
---|---|
0 | Halt |
1 | Single user mode |
2 | Multi-user |
3 | Full multi-user mode |
4 | Unused |
5 | X11 (Full multi-user graphical mode) |
6 | Reboot |
Modern Linux systems use systemd which refers with this :
Level | Target |
---|---|
0 | poweroff.target |
1 | rescue.target |
2,3,4 | multi-user.target |
5 | graphical.target |
6 | reboot.target |
- The scripts in /etc/init.d are not directly executed by the init process.
- Each of the directories /etc/rc0.d through /etc/rc6.d contain symbolic links to scripts in the /etc/init.d directory.
"S" stands for "start" and the "K" stands for "kill"
"N" means has not changed since the boot.