
Here are the methods to install Microsoft Edge in Garuda Linux:
Method 1: Using Yay (AUR Helper) (Recommended)
Update System:
Bash
sudo pacman -SyuInstall Yay (if not already installed):
Bash
sudo pacman -S yayInstall Microsoft Edge:
Bash
yay -S microsoft-edge-stableEnter your password when prompted and confirm installation.
Method 2: Using Flatpak
Install Flatpak (if not already installed):
Bash
sudo pacman -S flatpakAdd Flathub repository:
Bash
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepoInstall Microsoft Edge:
Bash
flatpak install flathub com.microsoft.Edge
Method 3: Manual Compilation (For advanced users)
Install dependencies:
Bash
sudo pacman -S base-devel gitClone the Git repository:
Bash
git clone https://aur.archlinux.org/microsoft-edge-stable.gitBuild and install:
Bash
cd microsoft-edge-stable makepkg -si
After installation, you can launch Microsoft Edge from your application launcher or by running the command:
Bash
microsoft-edge-stable
Recommendations:
Yay method is generally preferred as it's simpler and handles dependencies automatically.
Flatpak method is good for self-contained installations and potential better compatibility.
Manual compilation offers more control but requires more technical expertise.
Tags
- #archlinux
- #browsers
- #microsoft-edge
- #linux
- #garuda-linux