Software Recommendations for Linux

Windows-to-Linux software equivalents: what replaces your Windows apps and which Linux-native tools are worth trying.

Beginner Verified Working 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 comprehensive mapping of common Windows software to their Linux equivalents, with install commands that fit Ubuntu 24.04-based distros.


The Problem (Windows User Perspective)

You’re used to specific apps on Windows and want to find their Linux equivalents. Some apps (like VLC, Chrome, VS Code) work identically on Linux. Others (like Microsoft Office, Adobe suite) have no official Linux version and need alternatives. This guide maps everything out.


Install With Clean System Control

This guide gives quick app recommendations, but the clean-system rule still applies: install one app from one source, update it from that same source, and uninstall it with the matching package manager.

Before adding several apps from this list, read the clean installation and removal best practices. That guide explains when to use apt, Snap, Flatpak, .deb files, AppImage, and source builds without losing track of what owns your files.


Essential Software by Category

Web Browsers

Windows AppLinux EquivalentInstall
ChromeChrome (same)wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && sudo apt install ./google-chrome-stable_current_amd64.deb
EdgeEdge (same)See Browser Setup Guide
FirefoxFirefox (often pre-installed)Already installed on many Ubuntu-based desktops, including the tested setup
BraveBrave (same)See Browser Setup Guide

Office & Productivity

Windows AppLinux EquivalentInstall
Microsoft OfficeLibreOffice (often pre-installed)Already installed on many Ubuntu-based desktops
Microsoft Office (better compat)OnlyOfficesudo snap install onlyoffice-desktopeditors
NotepadText Editor (often pre-installed)Already installed on many Ubuntu-based desktops
Notepad++VS Code or Geditsudo apt install code (see VS Code Setup)
OneNote / NotionObsidiansudo snap install obsidian --classic
Standard NotesStandard Notessudo snap install standard-notes
Windows Clipboard HistoryWindows 11 Clipboard History for Linux or CopyQSee Clipboard Manager Guide

Communication

Windows AppLinux EquivalentInstall
ZoomZoom (same)wget https://zoom.us/client/latest/zoom_amd64.deb && sudo apt install ./zoom_amd64.deb
DiscordDiscord (same)sudo snap install discord or download .deb from discord.com
SlackSlack (same)sudo snap install slack
TelegramTelegram (same)sudo apt install telegram-desktop
Thunderbird (email)Thunderbird (same)sudo apt install thunderbird
SignalSignal (same)sudo snap install signal-desktop

Media & Entertainment

Windows AppLinux EquivalentInstall
VLCVLC (same)sudo apt install vlc
Windows Media PlayerCelluloidsudo apt install celluloid
iTunes / Groove MusicRhythmbox (often pre-installed)Already installed on many GNOME-based desktops
SpotifySpotifysudo snap install spotify
uTorrent / BitTorrentqBittorrentsudo apt install qbittorrent (see BitTorrent Guide)

Photos & Graphics

Windows AppLinux EquivalentInstall
PhotoshopGIMPsudo apt install gimp
IllustratorInkscapesudo apt install inkscape
Windows PhotosShotwellsudo apt install shotwell
PaintDrawing or another basic image editorInstall availability depends on distro flavor

System & Utilities

Windows AppLinux EquivalentInstall
System RestoreTimeshiftIncluded on some distros; otherwise install it first. See Timeshift Guide
CCleanerBleachBitsudo apt install bleachbit
Task ManagerSystem Monitor (often pre-installed)Already installed on many desktop installs
Everything (file search)Catfish or your distro’s built-in search toolAvailability depends on distro flavor
7-ZipFile Roller (often pre-installed)Already installed on many desktop installs
KeePassKeePassXCsudo apt install keepassxc
BitwardenBitwardensudo snap install bitwarden

Development Tools

Windows AppLinux EquivalentInstall
VS CodeVS Code (same)sudo apt install code
GitGit (same)sudo apt install git
GitHub DesktopGitHub Desktop (community)See install commands below
StataStata (same, Linux version)See Stata Guide
MiKTeXTeX LiveSee TeX Live Guide

GitHub Desktop on Linux:

# Add the community repository
wget -qO - https://apt.packages.shiftkey.dev/gpg.key | gpg --dearmor | sudo tee /usr/share/keyrings/shiftkey-packages.gpg > /dev/null
sudo sh -c 'echo "deb [arch=amd64 signed-by=/usr/share/keyrings/shiftkey-packages.gpg] https://apt.packages.shiftkey.dev/ubuntu/ any main" > /etc/apt/sources.list.d/shiftkey-packages.list'
sudo apt update && sudo apt install github-desktop

AI / CLI Tools

ToolInstallUninstall
Claude Code (Anthropic CLI)curl -fsSL https://claude.ai/install.sh | bashclaude uninstall && rm -rf ~/.claude
Codex CLI (OpenAI)npm install -g @openai/codexnpm uninstall -g @openai/codex && rm -rf ~/.codex

Package Managers: Which to Use?

ManagerBest ForSpeedDisk Usage
aptSystem packages, drivers, librariesFastSmall
Flatpak (Flathub)Desktop apps — latest versions, sandboxedMediumLarger
SnapQuick installs, auto-updatesSlower to launchLarger
.deb downloadOfficial packages from vendor websitesFastSmall
AppImagePortable apps — no install neededFastVaries

General rule:

  1. Check apt first — fastest, best integrated
  2. If not in apt or version is old, use Flatpak from Flathub
  3. Use Snap when it’s the only option
  4. Download .deb from vendor website for Chrome, Zoom, Discord, etc.
  5. Use AppImage for portable/trial apps

File Search: Windows “Everything” Equivalent

The user tried FSearch but didn’t like it. Better alternatives:

ToolTypeInstall
CatfishGUI search (available on Ubuntu-based distros)Install if needed, or use the file manager’s built-in search
RecollFull-text content searchsudo apt install recoll
locateLightning-fast terminal searchsudo apt install mlocate && sudo updatedb

What Didn’t Work (and Why)

Approach TriedWhy It Failed
FSearch (file search tool)User didn’t like the interface — removed it and PPA
Official uTorrent on LinuxAbandoned, v3.3 alpha, web-only UI
Looking for Microsoft Office on LinuxNo official Linux version — use LibreOffice or OnlyOffice
Looking for Adobe suite on LinuxNo official Linux version — use GIMP (photos), Inkscape (vectors), Kdenlive (video)

Discussion