Linux Basics

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

Linux Basics

January 7, 2021 10:28 PM

• Boot Process
○ PC firmware used for hardware initialization
 BIOS - Basic Input Output System - older systems
 UEFI - Unified Extensible Firmware Interface - New
 Functions
□ Check and initialize hardware
□ Find secondary disk with MBR and mount it
□ Run Bootloader (GRUB)
○ GRUB - Grand Unified Bootloader

• Linux Run Levels

Linux Page 1

○ Setting run level from command line


 Older command - telinit <level>
 New command - systemctl
• Filesystem Hierarchy Standard
○ Current version FHS 3
○ Root Level Directories

 /bin vs /sbin - /bin files should be available in all sessions including single user modes.
/sbin files should be available only during full multi-user session mode. It includes files
related to networking and other thing to support multiuser session
 /dev - all physical and virtual devices
○ Pseudo files - virtual files
 Dynamically created when system boots

Linux Page 2

Linux Page 3

You might also like