Windows-to-Linux Glossary

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

Beginner Updated 6 min read Tested on Zorin OS 18.1 Pro (Ubuntu 24.04 Noble base) Hardware Lenovo ThinkPad L14 Gen 2

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., Ubuntu, Zorin OS)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 / SettingsSettings (GNOME Settings)Access from app menu or gnome-control-center
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/usr/bin/, /usr/local/bin/, /opt/Split by type, not by application
C:\Windows\System32/usr/bin/, /usr/sbin/System 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 DockZorin has a Windows-like taskbar by default
File ExplorerFiles (Nautilus)Default file manager on Zorin/GNOME
Notification Area / System TraySystem TrayTop-right corner on GNOME
Desktop iconsDesktop iconsZorin supports these by default
Themes (Windows 10/11)Appearance settingsZorin: Settings → Appearance
Dark ModeDark ModeZorin supports auto light/dark switching
Snap layouts (Win 11)TilingAvailable in Pop!_OS; Zorin has basic snap-to-side
Multiple desktopsWorkspacesSwipe with 3 fingers or Super+scroll

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