Free Companion Material

Linux Resources for Windows Switchers

Practical references for quick lookup: commands, software alternatives, and terminal basics – freely accessible for everyone switching from Windows to Linux.

# freely usable · no registration required

Windows → Linux: Command Reference

The most important command-line commands in direct comparison. Anyone familiar with the Windows Command Prompt will quickly find their way around the Linux terminal.

Windows (CMD)Linux (Bash)Function
dirls -lList directory contents
cdcdChange directory
copycpCopy file
movemvMove / rename file
delrmDelete file
mkdirmkdirCreate directory
clsclearClear screen
typecatOutput file contents
ipconfigip aShow network configuration
tasklistps auxShow running processes
taskkillkillTerminate process
wherewhichFind program path
findstrgrepSearch files for text
shutdown /rrebootRestart computer

Software Equivalents

For almost every Windows program there is a mature – usually free – Linux alternative. The most important ones at a glance.

Windows ProgramLinux AlternativeCategory
Microsoft OfficeLibreOfficeOffice Suite
OutlookThunderbirdEmail & Calendar
Adobe PhotoshopGIMPImage Editing
Adobe IllustratorInkscapeVector Graphics
Adobe PremiereKdenliveVideo Editing
Windows Media PlayerVLCMedia Playback
Edge / ExplorerFirefoxWeb Browser
Notepadgedit / nanoText Editor
File ExplorerNautilus (Files)File Manager
Task ManagerSystem Monitor / htopProcess Management
OneDriveNextcloudCloud Storage
WinRAR / 7-ZipArchive ManagerExtract Archives

Useful Terminal Commands

A few commands that come up again and again in everyday Linux use – on Ubuntu and all related distributions.

manfred@ubuntu: ~
# Update system
$ sudo apt update && sudo apt upgrade
 
# Install a program
$ sudo apt install packagename
 
# Check free disk space
$ df -h
 
# Show RAM usage
$ free -h
 
# Find large files in folder
$ du -ah . | sort -rh | head -n 10
 
# Backup with rsync to external drive
$ rsync -av ~/Documents/ /media/backup/

Cheat Sheets as PDF

The references on this page are also available bundled for printing – free and without registration.

Command Cheat Sheet

Windows-to-Linux commands on one page, neatly formatted for hanging next to your monitor.

Download PDF

Software Migration List

All Windows programs and their Linux alternatives as a compact comparison list.

Download PDF

Terminal Basics

The most important Bash commands for beginners, explained in plain language.

Download PDF

About the Book

These resources are the companion material to the practical book "Ditch Windows, Embrace Linux" by Manfred Lorenz – a step-by-step guide to completely switching to Ubuntu 26.04 LTS.

View the Book →