1.1 Summarize Linux Fundamentals Flashcards
Filesystem Hierarchy Standard (FHS) - /bin directory
binary commands available to all users
Filesystem Hierarchy Standard (FHS) - /proc directory
information about the system state and processes
Filesystem Hierarchy Standard (FHS) - /sys directory
contains the sysfs virtual file system which displays information about devices and drivers
Filesystem Hierarchy Standard (FHS) - /var directory
data files that change constantly, such as user mailboxes, print queues, log files
Filesystem Hierarchy Standard (FHS) - /usr directory
system commands and utilities
Filesystem Hierarchy Standard (FHS) - /lib directory
shared program libraries and kernel modules
Filesystem Hierarchy Standard (FHS) - /dev directory
contains device files representing the system’s physical devices, such as hard drive, mouse, printer
Filesystem Hierarchy Standard (FHS) - /etc directory
system configuration files
Filesystem Hierarchy Standard (FHS) - /opt directory
contains additional system programs
Filesystem Hierarchy Standard (FHS) - /boot directory
kernel and bootloader files
Filesystem Hierarchy Standard (FHS) - /sbin directory
system binary commands
Filesystem Hierarchy Standard (FHS) - /home directory
contains user home directories
Filesystem Hierarchy Standard (FHS) - /media directory
directory used to mount removable media
Filesystem Hierarchy Standard (FHS) - /mnt directory
directory used for temporarily mounting remote file systems
Filesystem Hierarchy Standard (FHS) - /root directory
root user’s home directory
Filesystem Hierarchy Standard (FHS) - /tmp directory
directory containing temporary files created by programs during system use
List the 3 major phases of BIOS boot process
- BIOS
- Bootloader
- Kernel
What partitioning scheme is used by BIOS boot? What are it’s limitations?
- MBR partition scheme
- Max 4 partitions per disk, max 2TB partition size
How does BIOS find a bootable OS?
Searches devices listed in order from the CMOS for boot sector with MBR
What are the 3 requirements/limitations of MBR partition format?
- MBR must be installed in the first 512MB of disk on primary partition
- Only 4 standard (primary) partitions can be created
- Max partition size is 2TB
What are the 3 benefits/requirements for an extended partition?
- Uses Logical Block Addressing with 4096 byte sectors to allow larger partition sizes
- Allows creation of many logical partitions within it
- Only 1 extended partition can exist per physical disk
What are the 3 benefits/features of UEFI boot?
- Uses GPT partition scheme, 128 partitions, 9.4ZB max partition size
- Has its own boot manager
- OS boot files must be in ESP (EFI System Partition) formatted w/ FAT file system
UEFI boot process (4)
- Processor powers on and loads the UEFI program
- UEFI runs POST and loads basic input devices
- UEFI reads GUID partition table
- UEFI boot loader finds Linux EFI file in ESP
Define vmlinuz
Compressed file of vmlinux, which is a Linux kernel executable that can be used for debugging