How to Install Google Chrome on Fedora 41+ Using DNF5
Google Chrome remains one of the most popular web browsers, offering speed, security, and seamless integration with Google services. If you're running Fedora 41 or newer, and using the modern DNF5 package manager, here's how to get Chrome up and running in just a few steps.
🛠️ Prerequisites
Before you begin, ensure:
- You're using Fedora 41 or later.
- You have
sudo
privileges. - Your system is connected to the internet.
- DNF5 is installed (default in Fedora 41+).
📦 Step-by-Step Installation
1. Enable the Google Chrome Repository
Google provides an official repository for Chrome. To enable it:
sudo dnf config-manager setopt google-chrome.enabled=1
This command ensures that the google-chrome
repo is active in your system’s DNF configuration.
📝 Tip: If dnf config-manager
isn’t available, install it via:
2. Install Google Chrome
Now, install the stable version of Chrome:
sudo dnf install google-chrome-stable
This will pull the latest stable release directly from Google’s repository.
✅ You can also install other variants:google-chrome-beta
for testing upcoming features.google-chrome-unstable
for bleeding-edge updates.
3. Launch Chrome
Once installed, you can start Chrome via:
google-chrome-stable &
Or find it in your application launcher under “Internet” or simply search “Chrome.”
🔐 Optional: Set Chrome as Default Browser
To make Chrome your default browser:
xdg-settings set default-web-browser google-chrome.desktop
🧩 Troubleshooting
GPG key errors? Import Google’s signing key:
sudo rpm --import https://dl.google.com/linux/linux_signing_key.pub
Missing repo? Run:
sudo dnf config-manager --add-repo https://dl.google.com/linux/chrome/rpm/stable/x86_64
🧪 Bonus: Verify Installation
Check the installed version:
google-chrome-stable --version
🧼 Uninstalling Chrome
If you ever want to remove Chrome:
sudo dnf remove google-chrome-stable
🧠 Final Thoughts
Installing Chrome on Fedora 41+ with DNF5 is straightforward, thanks to Google’s maintained repository and Fedora’s modern package tooling. Whether you're a developer testing web apps or just want a fast browser, Chrome is a solid choice.