Windows-to-Linux Glossary

Definitions of Linux terms that confuse Windows users: distro, kernel, root, sudo, package manager, mount, daemon, and more.

Beginner Updated 7 min read Tested on Linux Mint 22.3 Cinnamon (Ubuntu 24.04 Noble base); also tested on Zorin OS 18.1 Pro Hardware Lenovo ThinkPad L14 Gen 2 (Intel i5-1135G7, 16GB RAM, Intel Iris Xe, 1366x768)

What This Guide Achieves

A quick-reference mapping of Windows concepts, terms, and locations to their Linux equivalents. When you see a Linux term you don’t recognize, look it up here.


System Concepts

Windows TermLinux EquivalentNotes
Windows (the OS)Distribution / Distro (e.g., Linux Mint, Zorin OS, Ubuntu)Linux is the kernel; the distro is the full OS
Windows Updatesudo apt update && sudo apt upgradeUpdates are faster and don’t require restarts (usually)
Control Panel / SettingsSystem Settings (Cinnamon) or Settings (GNOME)Access from app menu
RegistryConfig files (text files in ~/.config/, /etc/)No central registry — each app has its own config file
Task ManagerSystem Monitor or htophtop is more powerful (install with sudo apt install htop)
Device Managerlspci, lsusb, lshwNo single GUI — use terminal commands
Disk ManagementGParted or fdiskGParted is the GUI equivalent
Event Viewerjournalctl or /var/log/syslogSee Log Analysis Guide
System RestoreTimeshiftSee Timeshift Guide
Command Prompt / PowerShellTerminal (bash)Open with Ctrl+Alt+T
Run as AdministratorsudoPrefix any command with sudo for root privileges
Services (services.msc)systemd / systemctlsystemctl status service-name
.exe installer.deb package or apt installSee Package Management Guide
Programs and Featuresapt list --installed or Software Centersudo apt remove package-name to uninstall
Environment VariablesSame concept, different locationSet in ~/.bashrc or /etc/environment
PATH variableSame conceptEdit in ~/.bashrc: export PATH="$HOME/.local/bin:$PATH"

File System

Windows TermLinux EquivalentNotes
C: drive/ (root)Linux has one directory tree, no drive letters
D: drive, E: driveMount points (e.g., /mnt/data, /media/usb)External drives mount into the tree
C:\Users\username/home/username or ~~ is shorthand for your home directory
C:\Program Files/opt/, /usr/local/Third-party and manually installed applications
C:\Windows\System32/usr/bin/, /usr/sbin/System executables and admin binaries
%AppData%~/.config/Application settings
%LocalAppData%~/.local/share/Application data
%Temp%/tmp/Cleared on reboot
Recycle BinTrash (~/.local/share/Trash/)Right-click → Move to Trash, or gio trash file
Hidden files (attribute)Files starting with . (dot)ls -a to see them, Ctrl+H in file manager
File extension determines typeFile permissions + MIME typeExtensions are conventions, not enforced
Backslash \ path separatorForward slash /Always use / on Linux
Case-insensitive pathsCase-sensitive pathsFile.txt and file.txt are different files
NTFSext4 (default)ext4 is the standard Linux filesystem

Desktop & UI

Windows TermLinux EquivalentNotes
DesktopDesktopSame concept, usually at ~/Desktop
Start MenuActivities or App MenuClick top-left corner or press Super key
TaskbarPanel or DockLinux Mint Cinnamon and Zorin OS both have a Windows-like taskbar by default
File ExplorerFiles (Nautilus on GNOME/Zorin, Nemo on Cinnamon/Mint)Default file manager varies by desktop
Notification Area / System TraySystem TrayBottom-right panel on Mint Cinnamon; top-right corner on GNOME/Zorin
Desktop iconsDesktop iconsSupported by default on both Mint Cinnamon and Zorin OS
Themes (Windows 10/11)Appearance / Themes settingsMint Cinnamon: System Settings → Themes. Zorin OS: Settings → Appearance
Dark ModeDark ModeBoth Mint Cinnamon and Zorin OS support dark mode; Zorin also supports auto light/dark switching by time
Snap layouts (Win 11)Window tiling / snap-to-edgeBoth Mint Cinnamon and Zorin OS support snapping windows to screen edges by dragging or with keyboard shortcuts
Multiple desktopsWorkspacesSwipe with 3 fingers or Super+scroll; supported on both desktops

Networking

Windows TermLinux EquivalentNotes
ipconfigip addr or ifconfigip addr is the modern command
Network ConnectionsSettings → NetworkOr nmcli in terminal
Wi-Fi adapterIdentified by name (e.g., wlp9s0)ip link show to see all adapters
Ethernet adapterIdentified by name (e.g., enp8s0)Names are based on hardware slot
firewall (Windows Defender)ufw (Uncomplicated Firewall)sudo ufw status

Package Management

Windows TermLinux EquivalentNotes
Microsoft StoreSoftware Center (GNOME Software)GUI app store — each distro may brand it differently (e.g. “Ubuntu Software”, “Zorin Software”)
Download .exe from websitesudo apt install packagePackage manager is preferred
Installer wizardsudo apt install ./file.debOr apt install from repos
Uninstall from Programssudo apt remove packageOr use Software Center
Auto-updatesudo apt upgrade (manual) or unattended-upgradesUbuntu can auto-install security updates
Portable app (.exe)AppImageDownload, chmod +x, run — no install needed

Development

Windows TermLinux EquivalentNotes
Visual StudioVS Code (same on both)sudo apt install code or download .deb
Git BashTerminal (bash is native)Git is native on Linux — no special shell needed
WSL (Windows Subsystem for Linux)You’re already on LinuxWSL was designed to bring Linux tools to Windows
PowerShellbash (or zsh, fish)bash is the default shell
Batch script (.bat)Shell script (.sh)chmod +x script.sh && ./script.sh
scheduled taskscroncrontab -e to edit scheduled tasks

Keyboard Shortcuts

Windows ShortcutLinux (Ubuntu) EquivalentAction
Ctrl+C/V/XCtrl+C/V/XCopy/Paste/Cut (same in most apps)
Ctrl+C/V in terminalCtrl+Shift+C/V in terminalTerminal uses Shift modifier
Win keySuper keyOpens Activities/App menu
Alt+TabAlt+TabSwitch windows (same)
Ctrl+Alt+DelCtrl+Alt+Del (logout)Or use htop for task management
Win+ESuper+E or Files from dockOpen file manager
Print ScreenPrint ScreenScreenshot tool (same)
N/ACtrl+Alt+TOpen terminal (Linux-specific)
Win+LSuper+LLock screen

Discussion