2 — Install Linux
Replace Windows with an OS that actually respects you.
Why Linux?
Windows 11 has ads in the Start menu. It tracks your activity through "Diagnostic Data." It forces you to create a Microslop account. It decides when to restart your computer for updates. It ships with Candy Crush pre-installed on a $2000 machine. Microslop's own operating system treats you like a tenant in your own house.
Linux is an operating system that you actually own. No ads. No telemetry (unless you opt in). No forced updates. No Microslop account. No corporation deciding what you can and can't do with your own hardware. PewDiePie switched to Linux and called it one of the best tech decisions he's made — he runs Linux Mint on his desktop and Arch Linux on his laptop.
Is it harder than Windows? In some ways, yes. But the gap has closed dramatically. If you can follow
instructions and aren't afraid to Google browse error messages, you can use Linux daily.
Choose Your Distro
A "distro" (distribution) is a version of Linux packaged with different software and configurations. Think of it like this: Linux is the engine, and a distro is the complete car built around it.
Beginner-Friendly
Linux Mint — Start Here
PewDiePie's daily driver on his main desktop. Looks and feels like Windows — start menu, taskbar, file manager all where you expect them. Installing software is easier than Windows (built-in app store). Based on Ubuntu but with the controversial stuff stripped out. If you've never used Linux before, use Mint.
Download Linux Mint →
Zorin OS — The Windows Convert's Choice
Designed specifically for people switching from Windows. The interface mimics Windows so closely you might forget you switched. Comes with a curated software selection and Wine pre-configured for running some Windows apps. Great polish out of the box.
Download Zorin OS →Pop!_OS — For Gamers & NVIDIA
Made by System76 (a Linux hardware company). Ships with NVIDIA drivers pre-installed — no fiddling required. Excellent for gaming and creative work. Has a built-in tiling window manager for productivity. Ubuntu-based with better defaults.
Download Pop!_OS →
Ubuntu — The Most Popular
The biggest community means the most tutorials and Stack Overflow answers. Downside: Canonical (the company behind it) pushes Snap packages and has added some telemetry. Mint is based on Ubuntu but strips the controversial stuff.
Download Ubuntu →
Tuxedo OS — Hardware-Optimized Ubuntu
Ubuntu-based with no Snap packages (uses Flatpak instead), KDE Plasma desktop for deep customization, and a semi-rolling release model with verification from the Tuxedo team. Best compatibility for work tools while staying privacy-friendly. Simple install, simple use.
Download Tuxedo OS →Advanced
Fedora — Cutting Edge
Ships newer software than Mint or Ubuntu. Backed by Red Hat — where new Linux features land first. Good if you want the latest and greatest, but slightly less beginner-friendly.
Download Fedora →
CachyOS — Performance-Optimized Arch
Arch Linux-based with a graphical installer and performance optimizations out of the box. Compiled with aggressive CPU optimizations for modern hardware. Good middle ground between Arch's flexibility and a user-friendly install experience.
Download CachyOS →
Arch Linux — The Deep End
PewDiePie runs this on his laptop. A "build it yourself" distro — install from a command line and add every component manually. Teaches you how Linux actually works. Do not start here. Come back after you've used Mint for a few months.
Download Arch Linux →Step-by-Step Installation
Download Your Distro
Go to the download page of your chosen distro (we'll use Linux Mint as the example). Download the Cinnamon edition (the default). You'll get an ISO file — a disc image containing the entire operating system. It's about 2.5 GB.
Create a Bootable USB
You need a USB drive (at least 4 GB) and a tool to write the ISO to it. Pick one:
- balenaEtcher — The simplest option. Select ISO, select USB, click Flash.
- Rufus — Windows only, more options and faster.
- Ventoy — Lets you put multiple ISOs on one USB — great for trying several distros.
Your USB drive will be wiped, so make sure there's nothing important on it. Flashing takes about 5 minutes.
Boot from USB
Restart your computer and boot from the USB drive. Press a key during startup to access the boot menu — usually F12, F2, Esc, or Del depending on your motherboard. Select the USB drive.
Mint will boot into a "live" environment — a fully working version of the OS running from the USB. Nothing is installed yet. Test your WiFi, check the display, and take your time.
Decide: Dual-Boot or Full Install
Dual-boot means keeping Windows alongside Linux. Every restart, you choose which OS to boot. The Mint installer detects Windows and offers to shrink the Windows partition.
Full install means wiping Windows entirely. More disk space, cleaner setup, no temptation to fall back. If you've backed up everything and you're ready to commit, go for it.
Can Windows see your Linux files if dual-booted? No — Windows cannot natively read Linux's ext4 filesystem. Your Linux data is invisible to Windows by default. However, Linux can read Windows NTFS partitions. For maximum security, enable full-disk encryption (LUKS) during the Linux installation — the installer will offer this option. This ensures even if someone boots a live USB or removes your drive, they can't read your Linux data without the password.
Double-click "Install Linux Mint" on the desktop and follow the graphical installer. Pick your language, timezone, keyboard, username, and where to install. The whole process takes 15-20 minutes.
Learn Basic Terminal Commands
You can use Linux Mint without ever touching the terminal — it has a graphical app for almost everything. But learning a few commands will make your life much easier and is essential for following most Linux tutorials online.
- sudo apt update — Refresh the list of available software updates
- sudo apt upgrade — Install all available updates
- sudo apt install [package] — Install a program (e.g.,
sudo apt install vlc) - ls — List files in the current directory
- cd [folder] — Change directory
- cp [source] [destination] — Copy a file
- mv [source] [destination] — Move or rename a file
- rm [file] — Delete a file (careful — no recycle bin)
- man [command] — Read the manual for any command
The package manager (apt on Mint/Ubuntu) is one of the best things about Linux.
Instead of downloading installers from random websites, you type sudo apt install firefox
and it's done. On Arch, the package manager is pacman (sudo pacman -S firefox).
Want a more comprehensive commands reference? Check out this Linux commands cheat sheet or DigitalOcean's tutorial (note: DigitalOcean uses trackers and cookies — make sure you already have your browser extensions from Guide 1 installed first).
Install Your Essential Software
Mint comes with a lot pre-installed (Firefox, LibreOffice, text editor, media player), but here are some things you might want to add:
- Flatpak — Already installed on Mint. Lets you install apps in sandboxed containers from Flathub.
- VLC — Best media player, handles everything:
sudo apt install vlc - Timeshift — Already on Mint. Create system snapshots so you can roll back if something breaks.
- OBS Studio — Screen recording and streaming:
flatpak install flathub com.obsproject.Studio - Steam — Yes, gaming on Linux works. Valve's Proton compatibility layer runs most Windows games.
Desktop Environments
One of the best things about Linux is that you can completely change how your desktop looks and works. These aren't themes — they're entirely different interfaces.
Cinnamon
Mint's default. Traditional Windows-like layout — taskbar at the bottom, start menu, system tray. Familiar and functional.
Learn more →
GNOME
Ubuntu/Fedora default. macOS-like workflow with activities overview. Modern but polarizing.
gnome.org →
KDE Plasma
The most customizable desktop environment. You can make it look like anything. Heavy on options.
kde.org →
XFCE
Lightweight and fast. Great for older hardware or anyone who wants minimal resource usage.
xfce.org →Stick with Cinnamon for now. You can always try others later — that's the beauty of Linux. And if you get really deep into customization, check out the Ricing guide for tiling window managers.
Honest Downsides
Linux is great, but we're not going to lie about the rough edges:
Adobe software doesn't run on Linux
Photoshop, Premiere, Illustrator — none of them. Alternatives are GIMP (or PhotoGIMP), Kdenlive/DaVinci Resolve for video, Inkscape for vectors. They're good, but they're not Adobe. If your livelihood depends on Adobe, this is a real problem.
Some games don't work
Games with kernel-level anti-cheat (Valorant, Fortnite, FACEIT CS2) won't run. Most Steam games work through Proton — check protondb.com before you switch.
Adobe charges ~$65 to cancel your subscription
PewDiePie called this out. If you're on an annual plan paid monthly, Adobe charges an early termination fee. Factor this into your switch cost.
The learning curve is real
You will encounter situations where the solution is 'open a terminal and type these commands.' Every problem you solve teaches you something, and the Linux community (r/linuxmint, r/linux4noobs) is incredibly helpful.
Hardware compatibility can be hit or miss
Most things work out of the box, but some WiFi cards, printers, and peripherals need extra drivers. NVIDIA GPUs require proprietary drivers (Mint makes this easy in Driver Manager). Test with the live USB first.
Microslop Office doesn't exist on Linux
LibreOffice handles most Word/Excel/PowerPoint files fine, but complex formatting sometimes breaks. Use the web versions (Office 365 in browser) or run Windows in a virtual machine for exact compatibility.
Want to go deeper? Privacy Guides has comprehensive, crowd-sourced reviews on these topics: