Table of Contents:
1.Linux Architecture
2.Linux vs unix
3.Linux Distro
4.Booting Process
1.Linux Architecture

1. Hardware Layer
*The hardware layer is base of the Linux
architecture, it contain all the physical parts of a computer for example CPU , Ram , Storage, i/o device. The linux kernel communicates withe hardware using device drivers to control the physical parts.
2. Kernel Layer
*Linux kernel is a core part of the operating system
It acts as a bridge between hardware and software. It directly interacts with the hardware and manages system resources like CPU, memory, and devices.
*users give commands to the shell and the shell processes these commands the by interacting with the kernel .
example, if you runs ls, the kernel requests the file system to get file information from the hard disk.
Types
- Monolithic kernel
- Micro kernel
- Hybrid kernle.
3. Shell Layer
* shell in linux is a command line interface that allow to user interact withe operating system . It Acts as bridge b/w the user and kernel
Type:
1.Bash - default shell used to linux globally
2.Zsh(Z shell) - extended version of Bash shell like auto suggestion
3.fish(fish shell - it provides auto suggestion and web based config.
4.c shell - work like c programming ,mainly used developers
for real case work example
$cat /etc/shells - show only you installed shells
$echo #SHELL -show current shell
$chsh -s /bin/youinstalledshellname
4. User Applications Layer
include all programs and utilites(small programme or tool that help user perform specfic task like ls,cp,ping,top,ps)
2.Linux vs unix
Origin:-
Linux -Created by Linus Torvalds (1991)
Unix -Developed by AT&T Bell Labs (1970s)
License:-
Linux - Open-source & free (GPL)
Unix - Mostly proprietary (licensed)& paid
Usage:-
Linux -Used in PCs, servers, mobile (Android)
Unix - Used in enterprises, mainframes(big companies (like banks, telecoms, government)
Shell Support:-
Linux - Bash, Zsh, Fish, etc.
Unix - Bourne Shell, C Shell, Korn Shell
File System:-
Linux - ext4, XFS, Btrfs... etc
Unix - UFS, JFS, ZFS .... etc
Hardware Support:-
Linux - Runs on all devices (PCs, ARM, etc.)
ARM is type of process used in mobile,tablet,computer.
Unix - Runs on specific hardware (IBM, HP)
Strong security, frequent updates
Linux - gets regular update and fix the security issues and performance
Unix - very secure and less updates
Performance:-
Linux - high performece and flexible(code-chage and install different software and use may device)
Unix - less flexible and run on specific hardware
Examples:-
Linux - ubuntu ,Red hat,fedora,arch
Unix - AIX,HP-UX,solaris,macos
*3.Linux Distro
*
- Ubuntu - ubuntu.com
- Debian - debian.org
- Fedora - getfedora.org
- Arch Linux - archlinux.org
- Linux Mint - linuxmint.com
- openSUSE - opensuse.org
- Manjaro - manjaro.org
- Kali Linux - kali.org
- CentOS - centos.org
- Rocky Linux - rockylinux.org
4.Booting Process
i. BIOS/UEFI (Basic input/output system):-
Bios is firmware(means something does not change) store on a non-volatile memory chip on the motherboard that initialize and tests hardware components when a computer is powered on. It also loads the operating system. firmware it stored in a type of rom (read only memory) called firmware ,simply say firmware is written on to the Rom (Read only memory) during manfacturing ,it cannot be alteret,updated or erased later, permantely fixed in the memory.Now current environment used EEPROM(Electrically Erasable Programmable Read -only memory) or flash memory.
Functions of BIOS:
1.POST (Power-On Self-Test) – Checks if hardware components (CPU, RAM, storage,hardware ...etc) are working correctly.if any problem occurred (for example hdd not connect propery in motherboard,ram dust and not detect) show like beeps or error code.
2.Bootstapping (boot process) -find and load the os from storage into ram.
3.Harwae initalization - configure and initialize system hardware before os take the control.
4.Bios setup utility - allows users to configure system settings (boot order,secure boot ,bios password set)
5.basic i/o operations - acts as an interface b/w the os and hardware.
Types of Bios:-
*Legacy Bios _ older system used , it support only MBR partitioning and 16 bit interface( 16 bit processor) not support to GPT, user interface text-based ,keyboard-only, storage support 2.2 TB and 4 primary partition ,basic password protection and slower boot time.
UEFI - (Unified Extensible Firmware Interface)
*Now modern system used UEFi , user interface support graphical and keyboard ,mouse. operating system used 32 64 bit processor , storage support 18 exabyte and 128 partition. security boot ,advanced security feature, faster boot time.
- search the bootloader in the MBR if bios otherwise UEFI means GPT. bios passes the control bootloader.
ii. Bootloader (GRUB, LILO, etc.)
- MBR is responsible for loading and executing the grub boot loader ,let we discuss depth , GRUb(GRand Unified Bootloader) is bootloader used in Linux sysem to load the operating system into primary memory RAM when computer starts. it is the first software that after runs firmware(BIOS/UEFi) complete the hardware initialization.
stage 1:(MBR/EFI Execution)
BIOS/UEFI load the first stage o GRUp the MBR if
BIos (or) EFI system partion for UEFI.
MBR fist stage 512 bytes in the boot disk
stage 2:(Loading Kernel & initrd)
GRUB Loads the kernel (vmlinuz) into ram .
vmlinuz = "Virtual Memory LINUx gZip-compressed"
*It is the compressed Linux kernel used for booting the system and also GRUB load the initrd(initial ram disk ) or initramfs(initial Ram Filesystem),which contains essential drivers and tools,
initrd(old)/initramfs(modern) temporary root filesystem load into ram by the bootloader like grub, before then mount root filesystem (mount attach(connect) ,umount detach(disconnect),initramfs not need to mounted like initrd,load the directely in the ram.
*The main GRUB menu is displayed here,
You can select the operating system or kernel version,
If you no selected , it will boot the default OS automatically.
Passes control to the kernel.ck3(custom file)
Kernel Initialization
-
The kernel starts execution and mount the root file system read only mode , it runs systemd/init process , start the essential sevices, you can check the Linux os first prosses(pid) is systemd using top command.
- systemd is system manager it manage sytem services and control the run levels and so on.
*kernel manage the system resource(cpu,memory,device) and hardware components.
System Initialization (systemd/init)
*Systemd starts all required services and daemons (e.g., networking, logging).
*The kernel starts the init system (older Linux) or systemd (modern Linux).
*Systemd is the first process (PID 1) that manages system services.
- It manages runlevels (SysVinit(older)) or targets (systemd) to start
necessary services:
1.Networking
2.Filesystem mounting
3.Daemons (background services)
4.Login services
Runlevel/Target Execution
OldRunlevesl(SYsVinit)
runlevel
0 shutdown
1 singel user mode (resuce mode)
2 multi user mode (no networking)
3 multi user mode (with networking,CLI)
4 unused/custom mode
5 multi user mode with gui
6 reboot
example :
bash
$ runlevel
$ init 0
New Targets (systemd)
poweroff.target => Equivalent to Runlevel 0 (Shutdown)
rescue.target => Equivalent to Runlevel 1 (Single-user mode)
multi-user.target => Equivalent to Runlevel 2 & 3 (CLI, Networking)
graphical.target => Equivalent to Runlevel 5 (GUI mode)
reboot.target => Equivalent to Runlevel 6 (Reboot)
example :
bash
$ systemctl get-default (check runlevel)
$ systemctl isolate poweroff.target
$ systemctl set-default reboot.target
(isolate -temporary)
(set-default - permanent )
*Login Prompt (getty)
*
Displays a CLI login (TTY) or a Graphical Login (GDM/KDM).Allows the user to log in and access the system.
example:
$who
TTY column
tty1 - local terminal
pts/0 - remote ssh sessions1
pts/1 -remote ssh sessions2
Reference
https://medium.com/%40gangulysutapa96/6-stages-of-linux-boot-process-5ee84265d8a0
https://www.thegeekstuff.com/2011/02/linux-boot-process/
https://www.freecodecamp.org/news/the-linux-booting-process-6-steps-described-in-detail/
https://www.geeksforgeeks.org/linux-vs-unix/
https://www.linuxjournal.com/content/unix-vs-linux-what-is-the-difference
https://www.diffen.com/difference/Linux_vs_Unix