Ready to supercharge your Linux browsing? Microsoft Edge brings Chromium speed, built-in Copilot AI, and seamless integration to Ubuntu and Fedora. Whether you're ditching Chrome or craving vertical tabs, this guide delivers foolproof steps for the latest Microsoft Edge stable release. No more sideloading β use official repos for auto-updates! Let's dive in. β
Why Choose Microsoft Edge on Linux?
- β Faster than Firefox with V8 engine optimizations.
- π‘οΈ Enterprise-grade security and PDF editor built-in.
- π± Sync across devices, including Windows and Android.
- β‘ Native Linux support since its official debut.
Pro tip: Edge outperforms stock Chromium on battery life. Now, pick your distro! β€
Method 1: Install Microsoft Edge on Ubuntu (20.04+, 22.04, 24.04)
Ubuntu users get the smoothest ride via Microsoft's APT repository. Follow these steps in your terminal β it takes under 5 minutes.
- Update your system: Run
sudo apt update && sudo apt upgrade -y to avoid conflicts.
- Install prerequisites:
sudo apt install wget apt-transport-https -y.
- Add Microsoft GPG key:
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor | sudo tee /usr/share/keyrings/microsoft.gpg >/dev/null
- Add Edge repository:
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/microsoft.gpg] https://packages.microsoft.com/repos/edge stable main" | sudo tee /etc/apt/sources.list.d/microsoft-edge-stable.list
- Update and install:
sudo apt update && sudo apt install microsoft-edge-stable -y. Boom! π
- Launch Edge: Search "Edge" in your menu or run
microsoft-edge-stable.
Done? Verify with microsoft-edge-stable --version. Auto-updates via APT keep you on the latest Microsoft Edge!
Quick Comparison: Snap vs. Official Repo
| Method | Pros | Cons |
| Official Repo (Recommended) | Auto-updates, lightweight, full features | None! |
| Snap | Easy: sudo snap install edge | Slower startup, sandbox issues |
| Flatpak | flatpak install flathub com.microsoft.Edge | Larger footprint |
Stick to the repo for best performance on Ubuntu. β
Method 2: Install Microsoft Edge on Fedora (38+, 39, 40)
Fedora loves RPMs! Microsoft's DNF repo makes it effortless. SELinux? No sweat β it plays nice.
- Update system:
sudo dnf update -y.
- Import GPG key:
sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
- Add repo: Create
/etc/yum.repos.d/microsoft-edge.repo with:
[microsoft-edge]
name=microsoft-edge
baseurl=https://packages.microsoft.com/yumrepos/edge
enabled=1
gpgcheck=1
gpgkey=https://packages.microsoft.com/keys/microsoft.asc
- Install Edge:
sudo dnf install microsoft-edge-stable -y.
- Run it:
microsoft-edge-stable or from apps menu. π
Fedora tip: Enable RPM Fusion if needed, but Edge runs standalone. Check version with rpm -q microsoft-edge-stable.
Fedora Alternatives Table
| Method | Command | Best For |
| DNF Repo | As above | Daily driver |
| dnfdragora/AppCenter | Search "Edge" | GUI lovers |
Troubleshooting Common Issues
Stuck? Here's your fix-it toolkit:
- β GPG errors: Re-import key and
sudo apt/dnf clean all.
- β οΈ Black screen:
sudo apt install libnss3 libatk-bridge2.0-0 (Ubuntu) or sudo dnf install nss atk (Fedora).
- π SELinux blocks (Fedora):
sudo setsebool -P httpd_can_network_connect 1.
- π± ARM support: Stable on x64; check Microsoft Edge site for previews.
Pro Tips to Maximize Microsoft Edge on Linux
- β Enable hardware acceleration:
edge://flags/#enable-accelerated-video-decode.
- π§ Use Copilot sidebar for AI summaries.
- π₯ Import Chrome data automatically.
- π§ Customize with extensions from
edge://extensions.
Source: Official instructions from Microsoft Docs and Edge Repo.
Ready to Browse Faster?
You've got Microsoft Edge humming on Ubuntu or Fedora! Share your setup in comments below β vertical tabs fan? Hit that star. Next up: Tweak Edge for gaming? Stay tuned. π