Guides 11792 Published by

The guide walks Fedora users through installing the open‑source Chromium browser without vendor bloat. It begins by verifying the Fedora release, adding both free and non‑free RPM Fusion repositories, optionally clearing the DNF cache, then simply running dnf install chromium to bring the binary into /usr/bin/chromium. After launching the app it explains how to hold the package to avoid disruptive updates or unhold it when newer features are desired. The final note emphasizes that the process is straightforward, requires no PPAs or source‑code compilation, and keeps Fedora’s security stack intact.



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.