If you’re using Ubuntu 24.04 and want to install Edge, you’re in the right place.
On Ubuntu 24.04, installing Microsoft Edge is a simple process. With Edge installed, you can enjoy a fast, secure, and feature-rich browsing experience on your Ubuntu system.
This guide will walk you through all possible methods to get Microsoft Edge up and running on your Debian system.
2 Ways to Install Microsoft Edge on Ubuntu 24.04
Microsoft Edge is the Chromium-based browser from Microsoft. It has gained popularity for its speed, security, and integration with Microsoft services.
Let’s install it with the official method!
Method 1: Using the Microsoft Edge Repository
To install Microsoft Edge on Ubuntu 24.04, follow below steps:
1. Update Your System
It is a good practice to update the ubuntu repository before starting any installation:
sudo apt update
sudo apt upgrade
2. Install Required Packages
Next, you’ll need to install some essential packages that will help in the installation process.
sudo apt install software-properties-common apt-transport-https curl ca-certificates -y
3. Add the Microsoft Edge Repository
To install Edge on the ubuntu system, first, add the Microsoft Edge repository. Let’s install it:
First, download the GPG key:
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
After that, add the GPG key to the Ubuntu system:
sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/
Next, add the Microsoft Edge repository:
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge.list'
Note: If you found any error, remove the GPG key file via the sudo rm microsoft.gpg command.
4. Install Microsoft Edge
Now that the repository is added, you can install Microsoft Edge.
First, update your package list:
sudo apt update
Then, install Microsoft Edge:
sudo apt install microsoft-edge-stable
You can run Microsoft Edge installed via terminal with:
microsoft-edge-stable
Method 2: Using the .deb File
If you prefer a quick method, you can download the .deb file directly from the Microsoft Edge website and install it using the following steps:
1. Download the .deb File:
First, download the .deb file for Linux through the Microsoft Edge website:
wget https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-stable/microsoft-edge-stable_126.0.2592.102-1_amd64.deb
2. Install the .deb File:
Once the download is complete, navigate to the directory where the file is saved and run the following command:
sudo apt install ./microsoft-edge-stable_126.0.2592.102-1_amd64.deb
Finally, launch Microsoft Edge via the applications icon:
Note: This method also adds the Microsoft Edge repository to your system, ensuring you receive future updates.
Conclusion
To install Microsoft Edge on Ubuntu 24.04, run sudo apt update && sudo apt install microsoft-edge-stable command. This command downloads and installs Edge, ensuring you have the latest version ready to use.