ARCHIVE
200 essential Linux programs everyone should know
This is a practical, opinionated list. “Essential” here means useful across real Linux desktops, servers, development machines, homelabs, and daily terminal work — not that every person must install all 200 tools. Install what matches your workflow.
Selection criteria
- Actively used in common Linux distributions or widely available through repositories, Flatpak, Snap, AppImage, or upstream packages.
- Useful for at least one serious category: terminal work, development, security, backups, networking, desktop productivity, media, containers, or system administration.
- Preference for mature, documented, cross-distro, open-source tools when possible.
Core / Shell
| # | Program | Why it matters |
|---|---|---|
| 1 | bash | GNU shell; essential for scripting, automation, and daily terminal work. |
| 2 | zsh | Powerful interactive shell, often paired with Oh My Zsh, Starship, and autosuggestions. |
| 3 | fish | Friendly shell with smart autocomplete and a great out-of-the-box experience. |
| 4 | coreutils | Basic command collection such as cp, mv, ls, cat, sort, uniq, and more. |
| 5 | util-linux | Fundamental tools for disks, login, mounting, namespaces, and basic administration. |
| 6 | findutils | Tools like find and xargs for locating files and automating operations. |
| 7 | grep | Searches text in files and pipelines; basic, fast, and universal. |
| 8 | sed | Stream editor indispensable for text substitutions and transformations. |
| 9 | gawk | Powerful column-oriented text processor for logs, simple CSV files, and quick reports. |
| 10 | less | Essential pager for reading large files and long terminal outputs. |
| 11 | man-db | Local manual page system; still the fastest documentation for commands. |
| 12 | tldr | Short explanations and practical examples for common commands. |
| 13 | which | Shows which executable will be called by the shell. |
| 14 | file | Detects file types from content, not just extensions. |
| 15 | tree | Displays directories as a tree; simple and very useful. |
Files / Sync
| # | Program | Why it matters |
|---|---|---|
| 16 | rsync | Efficient file sync and copying, locally or remotely. |
| 17 | rclone | Syncs files with cloud services and remote storage backends. |
Network / Web
| # | Program | Why it matters |
|---|---|---|
| 18 | curl | Essential HTTP/FTP/etc. client for APIs, downloads, and network debugging. |
| 19 | wget | Classic downloader for files, pages, and simple mirrors. |
| 20 | aria2 | CLI download manager with HTTP, FTP, BitTorrent, and metalink support. |
Modern CLI
| # | Program | Why it matters |
|---|---|---|
| 21 | ripgrep | Extremely fast recursive search that respects .gitignore by default. |
| 22 | fd | Modern, user-friendly alternative to find for locating files. |
| 23 | bat | Cat alternative with syntax highlighting, paging, and Git integration. |
| 24 | eza | Modern ls replacement with icons, Git status, and more readable output. |
| 25 | fzf | Interactive fuzzy finder for files, history, processes, and any list. |
| 26 | zoxide | Smart directory jumping based on usage frequency. |
| 27 | atuin | Syncable, searchable shell history much better than default Ctrl+R. |
| 28 | starship | Fast, configurable prompt for multiple shells. |
| 29 | duf | Modern view of disk and filesystem usage. |
| 30 | dust | Disk usage analyzer more readable than du. |
| 31 | ncdu | Interactive terminal disk usage analyzer. |
| 32 | procs | Modern alternative to ps with more readable output. |
Monitoring
| # | Program | Why it matters |
|---|---|---|
| 33 | btop | Beautiful, complete system monitor for CPU, memory, network, and processes. |
| 34 | htop | Interactive process monitor, still indispensable. |
| 35 | glances | Broad system monitoring with web mode and API. |
Development
| # | Program | Why it matters |
|---|---|---|
| 36 | delta | Git diff viewer with syntax highlighting and better navigation. |
| 37 | git | Distributed version control; mandatory for modern development. |
| 38 | gh | Official GitHub CLI for issues, PRs, releases, and repos. |
| 39 | git-lfs | Git support for large files. |
| 40 | make | Classic build and task automation. |
| 41 | cmake | Cross-platform build system widely used in C/C++. |
| 42 | gcc | GNU compiler for C/C++ and related ecosystem. |
| 43 | clang | Modern LLVM compiler with excellent tooling and diagnostics. |
| 44 | gdb | Classic, powerful debugger for native programs. |
| 45 | Python 3 | Essential language for scripts, automation, AI, and web. |
| 46 | pipx | Installs isolated Python apps without polluting the system. |
| 47 | uv | Modern, fast Python manager for projects and dependencies. |
| 48 | Node.js | JavaScript runtime for tooling, web, and automation. |
| 49 | npm | Default package manager for Node.js. |
| 50 | pnpm | Fast, disk-efficient Node package manager. |
| 51 | Bun | Modern, fast JavaScript runtime/toolkit. |
| 52 | Deno | TypeScript/JavaScript runtime secure by default. |
| 53 | Go | Excellent language for CLIs, servers, and static tooling. |
| 54 | Rust | Modern language for fast, safe, low-level software. |
| 55 | Java OpenJDK | Open Java runtime and JDK for apps and servers. |
| 56 | Maven | Build and dependency management for Java projects. |
| 57 | Gradle | Modern build tool for Java/Kotlin/Android and large projects. |
| 58 | PHP | Still essential language for WordPress, Laravel, and traditional web. |
| 59 | Composer | PHP dependency manager. |
| 60 | Ruby | Useful language for scripts, Rails, and tooling. |
| 61 | RubyGems | Ruby package manager. |
Data / Text
| # | Program | Why it matters |
|---|---|---|
| 62 | jq | Command-line JSON processor; mandatory for API work. |
| 63 | yq | Manipulates YAML, JSON, XML, and TOML in the terminal. |
| 64 | jless | Interactive viewer for large JSON files. |
| 65 | xsv | Fast CSV toolkit: stats, selection, search, and joins. |
| 66 | miller | Powerful processing for CSV, TSV, JSON, and tabular data. |
Editors
| # | Program | Why it matters |
|---|---|---|
| 67 | nano | Simple terminal editor; great for quick server maintenance. |
| 68 | vim | Classic modal editor, available almost everywhere. |
| 69 | neovim | Modern, extensible Vim, excellent for programming. |
| 70 | micro | Easy terminal editor with familiar shortcuts and good mouse support. |
| 71 | emacs | Extremely extensible editor/ecosystem for text, code, org-mode, and more. |
| 72 | helix | Modern modal editor with built-in LSP and simple configuration. |
| 73 | VS Code | Popular graphical editor with a huge extension ecosystem. |
| 74 | VSCodium | Open build of VS Code without Microsoft telemetry/branding. |
| 75 | Kate | Powerful KDE editor, good for code and text. |
| 76 | Gedit | Simple GNOME editor for text and small edits. |
Terminal
| # | Program | Why it matters |
|---|---|---|
| 77 | tmux | Terminal multiplexer; persistent sessions, panes, and windows. |
| 78 | screen | Classic terminal multiplexer, useful on minimal servers. |
| 79 | Alacritty | Fast, minimalist GPU-accelerated terminal. |
| 80 | Kitty | Fast terminal with images, tabs, splits, and extensions. |
| 81 | WezTerm | Modern terminal configurable in Lua and cross-platform. |
| 82 | GNOME Terminal | Solid default terminal for GNOME environments. |
| 83 | Konsole | Full-featured, stable KDE terminal. |
| 84 | Tilix | Tiling terminal for GTK/GNOME. |
| 85 | Yakuake | Drop-down terminal for KDE, instant-console style. |
| 86 | Tilda | Lightweight drop-down terminal for various desktops. |
Package Management
| # | Program | Why it matters |
|---|---|---|
| 87 | apt | Base package manager for Debian/Ubuntu and derivatives. |
| 88 | dnf | Modern package manager used by Fedora/RHEL and derivatives. |
| 89 | pacman | Fast package manager for Arch Linux. |
| 90 | zypper | Package manager for openSUSE. |
| 91 | flatpak | Universal desktop app format, widely used with Flathub. |
| 92 | snapd | Snap package system, common on Ubuntu and some servers. |
| 93 | AppImageLauncher | Integrates AppImages into the desktop more cleanly. |
| 94 | Synaptic | Classic and powerful graphical interface for APT. |
| 95 | GNOME Software | GNOME app store with repository and Flatpak support. |
| 96 | KDE Discover | KDE store for apps, Flatpak, Snap, and add-ons. |
Network / Remote
| # | Program | Why it matters |
|---|---|---|
| 97 | OpenSSH | SSH client and server; secure remote access is mandatory. |
| 98 | mosh | Remote shell tolerant of unstable networks and roaming. |
Network / Security
| # | Program | Why it matters |
|---|---|---|
| 99 | nmap | Network scanner for inventory, ports, and diagnostics. |
Network / Debug
| # | Program | Why it matters |
|---|---|---|
| 100 | netcat | TCP/UDP Swiss army knife for quick network tests. |
| 101 | socat | Advanced relay and multiplexer for sockets, TCP, UNIX sockets, and more. |
| 102 | tcpdump | Terminal packet capture; essential for serious debugging. |
| 103 | Wireshark | Graphical packet analyzer for network investigation. |
| 104 | traceroute | Shows packet routes to a destination. |
| 105 | mtr | Combines ping and traceroute in a continuous view. |
| 106 | iperf3 | Measures bandwidth between machines. |
Network / DNS
| # | Program | Why it matters |
|---|---|---|
| 107 | dig | Precise DNS lookup, better than nslookup for diagnostics. |
| 108 | whois | Queries domain, IP, and network registration records. |
Network / Monitoring
| # | Program | Why it matters |
|---|---|---|
| 109 | nethogs | Shows network usage per process. |
| 110 | iftop | Shows per-connection network traffic in real time. |
| 111 | vnStat | Lightweight persistent network traffic monitor. |
Network / System
| # | Program | Why it matters |
|---|---|---|
| 112 | NetworkManager | Modern management for wired, Wi-Fi, and VPN networks. |
Network / VPN
| # | Program | Why it matters |
|---|---|---|
| 113 | wireguard-tools | Tools for WireGuard VPN, simple and efficient. |
| 114 | OpenVPN | Classic, widely supported VPN client/server. |
| 115 | Tailscale | WireGuard-based mesh VPN, great for homelabs. |
| 116 | ZeroTier | Software-defined virtual network for remote access and labs. |
Security
| # | Program | Why it matters |
|---|---|---|
| 117 | sudo | Controlled delegation of administrative privileges. |
| 118 | ufw | Simplified firewall over iptables/nftables. |
| 119 | nftables | Modern Linux kernel firewall, successor to iptables. |
| 120 | fail2ban | Blocks IPs after repeated attempts against services like SSH. |
| 121 | firewalld | Dynamic firewall management common on Fedora/RHEL. |
| 122 | GnuPG | Encryption, signing, and verification of files/keys. |
| 123 | age | Modern file encryption, simple and hard to misuse. |
| 124 | pass | CLI password manager based on GPG. |
| 125 | KeePassXC | Mature and reliable local password manager. |
| 126 | Bitwarden | Cross-platform password manager with Linux client. |
| 127 | YubiKey Manager | Configures YubiKeys for 2FA, FIDO, and PIV. |
| 128 | OpenSC | Smartcard and cryptographic token support. |
| 129 | clamav | Open-source antivirus useful for gateways, shared files, and servers. |
| 130 | rkhunter | Basic rootkit and suspicious-change checks. |
| 131 | lynis | Security auditing and hardening for Linux/Unix. |
| 132 | openssl | Essential toolkit for TLS, certificates, hashes, and cryptography. |
| 133 | VeraCrypt | Volume and container encryption compatible with Linux. |
Security / Dev
| # | Program | Why it matters |
|---|---|---|
| 134 | mkcert | Creates trusted local certificates for HTTPS development. |
Security / Privacy
| # | Program | Why it matters |
|---|---|---|
| 135 | Tor Browser | Strong privacy browsing via the Tor network. |
| 136 | OnionShare | File sharing and temporary sites over Tor. |
Backup
| # | Program | Why it matters |
|---|---|---|
| 137 | BorgBackup | Deduplicated, encrypted, efficient backups. |
| 138 | restic | Fast, secure, efficient backups to multiple backends. |
| 139 | Timeshift | Simple system snapshots, especially useful on desktops. |
| 140 | Déjà Dup | Simple graphical backup for desktop users. |
| 141 | Duplicati | Graphical/web backup with encryption and cloud support. |
| 142 | Kopia | Modern backup with deduplication, encryption, and optional UI. |
Storage
| # | Program | Why it matters |
|---|---|---|
| 143 | parted | CLI disk partitioning. |
| 144 | gparted | Graphical disk partitioning; indispensable for maintenance. |
| 145 | lsblk | Lists block devices/disks clearly. |
| 146 | smartmontools | Monitors S.M.A.R.T. health for HDDs/SSDs. |
| 147 | hdparm | Tuning and diagnostics for SATA/IDE drives. |
| 148 | nvme-cli | Administration and diagnostics for NVMe SSDs. |
| 149 | btrfs-progs | Tools for Btrfs: snapshots, scrub, subvolumes, and balance. |
| 150 | zfsutils-linux | ZFS tools for Linux. |
| 151 | exfatprogs | Modern exFAT support for flash drives and external disks. |
| 152 | ntfs-3g | Read/write support for NTFS partitions. |
| 153 | fuse | Base for user-space filesystems. |
| 154 | mergerfs | Pools multiple disks into one logical filesystem. |
Storage / Security
| # | Program | Why it matters |
|---|---|---|
| 155 | cryptsetup | Disk encryption with LUKS/dm-crypt. |
Storage / Remote
| # | Program | Why it matters |
|---|---|---|
| 156 | sshfs | Mounts remote directories over SSH. |
Storage / Backup
| # | Program | Why it matters |
|---|---|---|
| 157 | snapraid | Parity and failure protection for media/homelab arrays. |
Development / Debug
| # | Program | Why it matters |
|---|---|---|
| 158 | strace | Traces syscalls; brutally useful for seeing what a process does. |
| 159 | ltrace | Traces dynamic library calls. |
| 160 | valgrind | Memory debugging, leaks, and profiling for native programs. |
Development / Performance
| # | Program | Why it matters |
|---|---|---|
| 161 | perf | Linux performance profiling tool. |
Databases
| # | Program | Why it matters |
|---|---|---|
| 162 | SQLite | Embedded local database, perfect for small apps and prototypes. |
| 163 | PostgreSQL | Powerful relational database and serious production standard. |
| 164 | MariaDB | MySQL-compatible database common on web servers. |
| 165 | Redis | In-memory store for cache, queues, and sessions. |
| 166 | DBeaver | Universal graphical database client. |
Containers
| # | Program | Why it matters |
|---|---|---|
| 167 | Docker | Most common container platform in the market. |
| 168 | Docker Compose | Orchestrates local multi-container stacks. |
| 169 | Podman | Daemonless containers, good for rootless and Red Hat environments. |
| 170 | Buildah | Builds OCI images without relying on the Docker daemon. |
| 171 | Skopeo | Copies and inspects images across registries. |
| 172 | distrobox | Runs environments from other distros integrated with the desktop. |
| 173 | LXC | Lightweight system containers. |
Virtualization
| # | Program | Why it matters |
|---|---|---|
| 174 | QEMU | Flexible emulation and virtualization. |
| 175 | KVM | High-performance native virtualization on Linux. |
| 176 | virt-manager | Graphical interface for KVM/libvirt. |
| 177 | VirtualBox | Easy desktop virtualization for regular users. |
Servers
| # | Program | Why it matters |
|---|---|---|
| 178 | nginx | Fast, established web server/reverse proxy. |
| 179 | Caddy | Modern web server with automatic HTTPS and simple configuration. |
| 180 | Apache HTTP Server | Classic, robust, widely supported web server. |
| 181 | HAProxy | High-performance TCP/HTTP load balancer and proxy. |
| 182 | Traefik | Dynamic reverse proxy excellent for containers. |
System
| # | Program | Why it matters |
|---|---|---|
| 183 | systemd | Init, services, timers, logs, and modern system management. |
DevOps
| # | Program | Why it matters |
|---|---|---|
| 184 | Ansible | Agentless configuration and deployment automation. |
| 185 | Terraform | Declarative infrastructure provisioning. |
| 186 | kubectl | Essential CLI for Kubernetes. |
| 187 | Helm | Package manager for Kubernetes. |
Desktop / Web
| # | Program | Why it matters |
|---|---|---|
| 188 | Firefox | Free, reliable browser that works excellently on Linux. |
| 189 | Chromium | Open-source Chrome base and modern-web-compatible alternative. |
| 190 | Brave | Chromium-based browser focused on blocking and privacy. |
Productivity
| # | Program | Why it matters |
|---|---|---|
| 191 | LibreOffice | Complete office suite for documents, spreadsheets, and presentations. |
| 192 | OnlyOffice Desktop Editors | Office suite with good Microsoft format compatibility. |
| 193 | Thunderbird | Mature email client with calendar and extensions. |
| 194 | Evolution | Email, calendar, and contacts integrated with GNOME. |
| 195 | Obsidian | Markdown notes with internal links and a large ecosystem. |
| 196 | Joplin | Open-source notes with sync and optional encryption. |
| 197 | Logseq | Local-first outliner for personal knowledge. |
| 198 | Okular | Excellent KDE viewer for PDF, EPUB, and annotations. |
Productivity / Research
| # | Program | Why it matters |
|---|---|---|
| 199 | Zotero | Indispensable academic reference manager. |
Productivity / Books
| # | Program | Why it matters |
|---|---|---|
| 200 | Calibre | Powerful ebook manager. |
Notes
- On Debian/Ubuntu, prefer APT for base packages and Flatpak for newer desktop apps when the distro package is old.
- On Fedora, prefer DNF/RPM for system tools and Flatpak for desktop apps.
- On Arch, prefer official repositories first, then AUR only when necessary.
- On servers, do not install desktop apps, gaming tools, or GUI-heavy utilities unless you actually need them. Minimal systems should stay minimal.
Sources consulted
- ArchWiki list of applications: https://wiki.archlinux.org/title/List_of_Applications
- ArchWiki core utilities: https://wiki.archlinux.org/title/Core_utilities
- Debian packages: https://www.debian.org/distrib/packages
- Flathub: https://flathub.org/
- GNOME apps: https://apps.gnome.org/
- KDE apps: https://apps.kde.org/
- fzf: https://github.com/junegunn/fzf
- fd: https://github.com/sharkdp/fd
- Podman documentation: https://podman.io/docs/documentation
- Caddy documentation: https://caddyserver.com/docs/install
- nginx documentation: https://nginx.org/en/docs/
- restic: https://github.com/restic/restic
- Debian rsync package: https://packages.debian.org/stable/rsync
- AppImage: https://appimage.org/
- Flatpak: https://flatpak.org/
Related documents
- 001
Archive
The Five Thousand Dollars - 002
Archive
Ozymandias - 003
Archive
THE ABBESS IS DEAD! - 004
- 005