Ready to bring the speed, security, and features of Microsoft Edge to your Linux machine? Whether you're on Ubuntu or Fedora, this browser delivers top-tier performance with Chromium engine, built-in Copilot AI, and seamless integration. No more compromises—install Microsoft Edge on Linux today and elevate your browsing! 🌟
We'll cover official methods using Microsoft's repositories for the latest stable version. It's quick, secure, and keeps you updated automatically. Let's dive in! 👆
Why Choose Microsoft Edge on Linux?
- ✅ Blazing-fast Chromium base with vertical tabs and collections.
- ✅ Enterprise-grade security and privacy tools.
- ✅ Native Linux support—no Wine or snaps needed.
- ✅ Perfect for devs, gamers, and everyday users.
Pro tip: Edge outperforms many native Linux browsers in benchmarks. Stick around for Ubuntu and Fedora guides, plus troubleshooting! 😊
How to Install Microsoft Edge on Ubuntu (20.04+, 22.04+, 24.04+)
Ubuntu users rejoice! Microsoft's official apt repository makes installation a breeze. Follow these steps in your terminal:
- Import the Microsoft GPG key:
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/microsoft.gpg > /dev/null
- Add the Edge repository:
echo 'deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main' | sudo tee /etc/apt/sources.list.d/microsoft-edge-stable.list
- Update package list:
sudo apt update
- Install Microsoft Edge:
sudo apt install microsoft-edge-stable
Launch it from your menu or microsoft-edge in terminal. Boom—you're browsing! 🎉
Want the beta or dev channel? Replace stable with beta or dev in the repo URL. Official source: Microsoft Docs.
How to Install Microsoft Edge on Fedora (38+, 39+, 40+)
Fedora fans, dnf has your back. Microsoft's RPM repo ensures smooth sailing:
- Import the Microsoft GPG key:
sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
- Add the Edge repository:
sudo sh -c 'echo -e "[microsoft-edge-stable]\nname=microsoft-edge-stable\nbaseurl=https://packages.microsoft.com/yumrepos/edge/\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" > /etc/yum.repos.d/microsoft-edge-stable.repo'
- Update and install:
sudo dnf check-update
sudo dnf install microsoft-edge-stable
Fire it up with microsoft-edge. Fedora's RPM Fusion? No conflicts here! 🚀
For beta/dev: Duplicate the repo file and swap stable. Check Microsoft RPM Guide for details.
Ubuntu vs. Fedora: Quick Comparison Table
| Step |
Ubuntu (APT) |
Fedora (DNF) |
| GPG Key |
curl + gpg --dearmor |
rpm --import |
| Repo Add |
echo deb > list |
sh -c echo > repo |
| Update/Install |
apt update & install |
dnf check-update & install |
| Time to Launch |
~2 mins |
~2 mins |
🔧 Common Issues & Troubleshooting
Hit a snag? Here's your fix kit:
- ❌ GPG errors: Re-import key with
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EB3E94ADBE1229CF (legacy fallback).
- ❌ Repo not found: Double-check URL—no typos!
- ❌ Conflicts with Chromium:
sudo apt remove chromium-browser or equivalent.
- ❌ ARM support: Stable on arm64 for Ubuntu; check Microsoft for Fedora.
- 💡 Update Edge:
sudo apt upgrade microsoft-edge-stable (Ubuntu) or sudo dnf upgrade (Fedora).
Uninstall? sudo apt remove microsoft-edge-stable and delete repo file. Easy peasy! 👍
Pro Tips to Supercharge Your Microsoft Edge on Linux
- ⭐ Enable startup boost in
edge://flags.
- ⭐ Sync with Windows/Mac for seamless profiles.
- ⭐ Use PWAs via
edge://apps for native feel.
Now that Microsoft Edge is live on your Ubuntu or Fedora, explore extensions marketplace. Questions? Drop a comment below—we've got more Linux guides coming! Keep browsing smart. 👏
Stay tuned for advanced tweaks like Flatpak/Snap alternatives (though official repos rock!)