Linux Mint users currently, by default, are only limited to the Firefox Internet Browser. However, many alternatives can be installed. Microsoft Edge is one alternative that has been in development for over a year and has been getting quite a lot of good reviews amongst many Linux distribution communities and maybe an alternative compared to just switching to Google Chrome.
The following tutorial will teach you how to install Microsoft Edge stable, beta, or developer (nightly build) on Linux Mint 20 LTS using the command line terminal.
Table of Contents
Update Linux Mint
First, update your system to ensure all existing packages are up to date.
sudo apt update && sudo apt upgrade -y
Install Required Packages
To successfully install the Edge Browser, you must install the following packages; run this command if you are unsure; it will not harm your system.
sudo apt install software-properties-common apt-transport-https wget ca-certificates gnupg2 -y
These are pretty generic dependencies that may be already installed. Run the command regardless if unsure, as many other installations will require these on your system.
Import Edge GPG Key & Repository
Import the Microsoft Edge GPG Key
In the first step, you will need to download the GPG key to verify the package’s authenticity using the following command.
sudo wget -O- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor | sudo tee /usr/share/keyrings/microsoft-edge.gpg
Import the Microsoft Edge Repo
Next, add the repo as follows.
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/microsoft-edge.gpg] https://packages.microsoft.com/repos/edge stable main' | sudo tee /etc/apt/sources.list.d/microsoft-edge.list
Once you have completed the imports, refresh your repository list to reflect the new one.
sudo apt update
Install Microsoft Edge Browser
Microsoft Edge can be installed using stable (recommended) or beta nightly, using three alternative branches.
Install Microsoft Edge Stable
sudo apt install microsoft-edge-stable -y
Optional. Install Microsoft Edge Browser Beta or Dev Version
Alternatively, you can install the Microsoft Edge Brower beta or dev (nightly) build if you have downloaded the repositories. These two versions are not recommended for daily use, especially not on a main desktop or production server.
However, you can install alternative versions below for those who want to live on the edge or check out upcoming releases.
Note that these do not replace your stable version and are installed separately, but it is recommended only to install one at a time.
Install Microsoft Edge Browser Beta
sudo apt install microsoft-edge-beta -y
Install Microsoft Edge Browser Dev (Nightly)
sudo apt install microsoft-edge-dev -y
How to Launch Microsoft Edge Browser
To run Microsoft Edge, you can use the terminal command in your console:
microsoft-edge
However, this isn’t practical, and you would use the following path on your desktop
Taskbar > Internet > Edge {version}.
Example:
When you open Microsoft Edge, you will be greeted and need to configure some first step settings; these are all user choices such as minimal or information views.
Once done, your browser should look like the below, depending on the tab type you selected.
Example:
How to Update/Upgrade Microsoft Edge
To update Microsoft Edge Internet Browser, run the APT update command in your terminal as you would check your entire system for any updates.
sudo apt update
If one is available, use the upgrade option:
sudo apt upgrade
How to Remove (Uninstall) Microsoft Edge Browser
Remove Microsoft Edge Stable
sudo apt autoremove microsoft-edge-stable --purge
Note that unused dependencies will also be removed.
Alternatively, if you have beta or unstable builds, use the following commands and remove these versions.
Remove Microsoft Edge Beta:
sudo apt remove microsoft-edge-beta --purge
Remove Microsoft Edge Dev:
sudo apt remove microsoft-edge-stable-dev --purge
Next, remove the repository that was imported with the following commands.
sudo rm /etc/apt/sources.list.d/microsoft.*
Lastly, remove the GPG key.
sudo rm /usr/share/keyrings/microsoft*
And that is it, and you have successfully removed the Microsoft Edge Browser from your desktop.
Troubleshooting Multiple Sources.list
Please note you can install all three. However, each installation will create a new sources list in your /etc/apt/sources.list.d/ directory. When you use the apt update command, you will have multiple sources.list for Opera Browser, and some will be ignored.
Just remove the extras and keep the original one. If you accidentally delete them, copy the import directory code in this tutorial.
Example of a quick fix.
sudo rm /etc/apt/sources.list.d/microsoft*
Then re-add the one repository.
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/microsoft-edge.gpg] https://packages.microsoft.com/repos/edge stable main' | sudo tee /etc/apt/sources.list.d/microsoft-edge.list
Remember to run an APT update.
sudo apt update
This should fix the issue in the future, and you will still receive updates for all three browsers from one source.list instead of three.
Comments and Conclusion
Overall, Microsoft Edge is a solid option. However, many open-source and FOSS fans will not have a bar of it due to using a Windows product in a historical sense on Linux and the long history of Microsoft vs. Linux; some of it is justifiable. Indeed it is; some of it is just political rubbish.
However, ranking Edge for performance and speed is among the top Internet Browsers, and it truly works well on Linux if you can get over Microsoft’s ownership.