The OS is the master software running every computer. Understanding what it does โ and how to identify yours โ is essential workplace knowledge.
Core Concept
An Operating System (OS) is the foundational software that manages every resource on your computer โ hardware, memory, files, network connections, and user interface. Every other program runs on top of it. Without an OS, a computer is just expensive metal.
The OS loads first when you turn on your machine and stays running the entire time. It acts as an intermediary: when you open Chrome, the OS allocates RAM. When you save a file, the OS writes it to storage. When you connect a printer, the OS loads its driver.
The OS is like the management layer of a hotel. Guests (apps) request rooms (memory), services (hardware), and check-in/out (start/close). The hotel management (OS) coordinates all of this, enforces rules, and ensures guests don't interfere with each other.
Setup instructions for AI tools differ by OS. "Install Python 3.11" looks completely different on Windows vs. Mac vs. Linux. When you download an AI framework like PyTorch, you'll choose a version specific to your OS. And increasingly, AI tools that you install and run on your own machine require OS-specific setup steps โ which terminal to open, which package manager to use, and where files are stored. Knowing your OS and version is always step one.
The Big Three Operating Systems
Used on ~75% of desktops worldwide. Default on PCs from Dell, HP, Lenovo, Microsoft Surface. Current versions: Windows 10, Windows 11. Most common in corporate environments.
Runs exclusively on Apple Mac hardware. Named after California locations: Ventura, Sonoma, Sequoia. Popular in creative industries and tech startups.
Free, open-source OS used heavily by developers and IT. Many distributions: Ubuntu, Debian, Red Hat. Powers most web servers globally.
On smartphones: iOS (Apple) and Android (most other phones). Tablets run iPadOS, Android, or Windows. Chromebooks run Chrome OS.
Core Functions
Organizes all data into files and folders. Windows: File Explorer. Mac: Finder. Tracks where every byte is stored.
Allocates RAM to running programs and frees it when programs close. Manages virtual memory when physical RAM is full.
Controls which programs run and how much CPU time they get. Task Manager (Windows) or Activity Monitor (Mac) to force-quit frozen apps.
Loads and manages device drivers to communicate with hardware. Plug in a USB device โ the OS detects it and finds the right driver.
Manages user accounts, passwords, and access controls. Determines who can access which files and enforces security policies.
Handles Wi-Fi, Ethernet, VPN, and Bluetooth connections. Manages IP addresses, DNS, and firewall rules.
Practical Skills
When IT asks "what OS are you running?" โ knowing exactly where to look saves everyone time.
Click the Start button โ Settings (gear icon) โ System โ About. Look for "Edition" (Windows 10 Home, Windows 11 Pro) and "Version" (22H2, 23H2). Or press Win + R, type winver, press Enter.
Click the Apple menu (top-left corner) โ About This Mac. You'll see the macOS name (e.g., "Sonoma") and version number (e.g., 14.3). This screen also shows your RAM and storage summary.
Open a Terminal and type lsb_release -a or uname -r. The first shows your distribution and version; the second shows the kernel version. On Ubuntu with a GUI, go to Settings โ About.
OS Comparison
| Feature | Windows | macOS |
|---|---|---|
| Who makes it? | Microsoft | Apple |
| Hardware | Almost any PC brand | Apple Mac only |
| Market share (desktop) | ~75% | ~15% |
| Common industries | Corporate, finance, gov, education | Creative, design, media, tech |
| File manager | File Explorer | Finder |
| Force-quit | Ctrl+Shift+Esc (Task Manager) | Cmd+Space โ Activity Monitor |
| System settings | Settings (Win + I) | System Settings (Apple menu) |
| Updates | Windows Update (sometimes forced) | Software Update (more user-controlled) |
Critical Practice
When your OS prompts you to update, it's not just adding new features. Updates contain security patches โ fixes for discovered vulnerabilities that hackers could exploit.
Security patches fix discovered vulnerabilities. When Microsoft releases a "critical" patch, it means hackers have found a way in through that hole. Installing the patch closes it. Many ransomware attacks exploit unpatched OS vulnerabilities โ the fix existed but the user hadn't updated.
Feature updates bring new functionality โ new apps, redesigned interfaces, new tools. Typically larger (gigabytes) and require restarts. It's normal for these to take 20โ60 minutes. Don't interrupt them โ closing the laptop mid-update can cause serious problems.
End of Life (EOL) means the manufacturer has stopped issuing updates. Windows 10 reaches EOL in October 2025. Running an EOL OS means no more security patches โ every new vulnerability found will remain forever unpatched. IT takes EOL very seriously for compliance.
Do these right now:
Win+R, type winver. On Mac: Apple menu โ About This Mac. Write down the full name and version.Ctrl+C (Windows) vs. Cmd+C (Mac).Check Your Understanding
Answer all questions to complete this module.
1. On Windows, the quickest way to find your exact OS version is:
2. What does "End of Life" (EOL) mean for an operating system?
3. Why do AI tool installation instructions differ by operating system?