How to  install Microsoft Edge in Garuda Linux

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)

  1. Update System:

    Bash

     sudo pacman -Syu
    
  2. Install Yay (if not already installed):

    Bash

     sudo pacman -S yay
    
  3. Install Microsoft Edge:

    Bash

     yay -S microsoft-edge-stable
    

    Enter your password when prompted and confirm installation.

Method 2: Using Flatpak

  1. Install Flatpak (if not already installed):

    Bash

     sudo pacman -S flatpak
    
  2. Add Flathub repository:

    Bash

     flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
    
  3. Install Microsoft Edge:

    Bash

     flatpak install flathub com.microsoft.Edge
    

Method 3: Manual Compilation (For advanced users)

  1. Install dependencies:

    Bash

     sudo pacman -S base-devel git
    
  2. Clone the Git repository:

    Bash

     git clone https://aur.archlinux.org/microsoft-edge-stable.git
    
  3. 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.