How to Install Chromium on Fedora Linux
If you’re running Fedora and want the open‑source version of Chrome without all the vendor bloat, this guide will get Chromium up and running in minutes. No fuss, no extra repos you can’t trust.
1. Check Your Fedora Version
Before anything else, make sure you know which Fedora release you’re on.
rpm -E %fedora
Why bother? Some repositories only support certain major releases; knowing the number keeps your package manager from pulling in broken dependencies later.
2. Add the RPM Fusion Repository (Free & Non‑free)
Chromium lives in RPM Fusion, but you’ll need both the free and non‑free sections because some binaries require proprietary codecs or libraries for proper rendering.
sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm sudo dnf install https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
I’ve seen people hit “Could not resolve dependency” errors on a plain Fedora install until they added both repos; it’s the simplest way to avoid that headache.
3. Clean DNF Cache (Optional but Recommended)
sudo dnf clean all
If you’re migrating from an older Fedora or have a messy cache, cleaning prevents stale metadata from stalling your install.
4. Install Chromium
sudo dnf install chromium
That’s it—one command and the browser is available in /usr/bin/chromium.
Why a single line? DNF handles dependency resolution automatically once the right repos are enabled, so you won’t end up chasing missing libraries.
5. Launch Chromium (and Verify)
chromium &
Or find it under “Web Browser” in your application launcher. When it opens for the first time, it may download a few extra components; just wait—this is normal.
6. Optional: Disable Automatic Updates for Stability
If you’ve experienced sudden crashes after an automatic update (I’ve seen that happen after a buggy driver bump), consider pinning Chromium’s package to its current version:
sudo dnf mark hold chromium
Now Fedora will leave it alone unless you explicitly upgrade.
7. Keep It Fresh (When You’re Ready)
If you want the latest features, reverse the hold and update normally:
sudo dnf mark unhold chromium sudo dnf update chromium
That’s all there is to it—no messy PPAs or source‑code gymnastics. Grab Chromium, stay lightweight, and enjoy a browser that works well with Fedora’s default security stack.