Operating System Basics Flashcards
What are the two main parts of an operating system?
The Kernel and the User Space
What does the operating system’s kernel do?
It communicates directly to hardware and manages the system’s resources
What operating systems are the most widely distributed?
Windows, Mac OS and Linux
What are the three most common Linux distributions?
Ubuntu, Debian and Red Hat
What does the kernel manage?
Processes, Memory, Files and I/O
What does the kernel’s process management do?
It prioritizes all current processes and assigns resources to be used
What is the Process Scheduler in the kernel?
Responsible for switching the execution of different processes on the CPU
What does the kernel’s memory management do?
Optimizes memory usage and makes sure applications have enough memory to run
What does the kernel’s Input/Output management do?
Responsible for the kernel’s communication with external devices like hard drives, peripherals and more
What are the three main components to file handling on an OS?
File Data, Metadata, and File System
What is the major File System that’s used for Windows?
NTFS
What is the major File System that’s used for Mac OS?
APFS
What is the standard file system for Linux distributions?
ext4
How is data stored in a hard drive? What is this storage called?
In data blocks via Block Storage
What is the difference between a Process and a Program?
A Process is a program that’s executing, like an internet browser or text editor. A Program is just an application that can be run, like Chrome. You can have multiple processes of the same program running