How to install Microsoft Edge in Garuda Linux
Install Microsoft Edge in Arch linux or Garuda linux
Here are the methods to install Microsoft Edge in Garuda Linux:
Method 1: Using Yay (AUR Helper) (Recommended)
Update System:
Bash
sudo pacman -Syu
Install Yay (if not already installed):
Bash
sudo pacman -S yay
Install Microsoft Edge:
Bash
yay -S microsoft-edge-stable
Enter your password when prompted and confirm installation.
Method 2: Using Flatpak
Install Flatpak (if not already installed):
Bash
sudo pacman -S flatpak
Add Flathub repository:
Bash
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
Install Microsoft Edge:
Bash
flatpak install flathub com.microsoft.Edge
Method 3: Manual Compilation (For advanced users)
Install dependencies:
Bash
sudo pacman -S base-devel git
Clone the Git repository:
Bash
git clone https://aur.archlinux.org/microsoft-edge-stable.git
Build 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.