Install Microsoft Edge on Arch Linux/Manjaro in One Line of Command
Last modified on .
Microsoft Edge is growing fast since it embraced the power of Chromium. According to some online data, it has become the 3rd most popular browser. And funny enough, it supports Linux too. .deb
and .rpm
packages are available from the official site, also some AUR packages maintenance by the community for Arch Linux users.
Installation
-
$ sudo pacman -S --needed git && git clone https://aur.archlinux.org/microsoft-edge-stable-bin.git && cd microsoft-edge-stable-bin && makepkg -si
-
$ sudo pacman -S --needed git && git clone https://aur.archlinux.org/microsoft-edge-beta-bin.git && cd microsoft-edge-beta-bin && makepkg -si
-
$ sudo pacman -S --needed git && git clone https://aur.archlinux.org/microsoft-edge-dev-bin.git && cd microsoft-edge-dev-bin && makepkg -si
Explanation
The commands above will do the followings:
- Install
git
if you haven't. - Clone the repository from AUR (Arch User Repository).
cd
into the directory.- Build the package with
makepkg
and install withpacman
.
See Also
- Two Ways to Install Packages from AUR on Arch Linux/Manjaro
- Install Google Chrome on Arch Linux/Manjaro in One Line of Command
- How to Install Firefox on Arch Linux/Manjaro in One Line of Command
- Install Brave Browser on Arch Linux/Manjaro in One Line of Command
- Install Chromium on Arch Linux/Manjaro in One Line of Command
- Install Vivaldi Browser on Arch Linux/Manjaro in One Line of Command
- Install GNOME Web (Epiphany) on Arch Linux/Manjaro in One Line of Command