How to install Microsoft Edge in Garuda Linux

Rendy SaputraRendy Saputra
1 min read

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.

0
Subscribe to my newsletter

Read articles from Rendy Saputra directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Rendy Saputra
Rendy Saputra

Full-stack developer with mastery across mobile (React Native, Ionic), front-end (React, Svelte, Vue.js), back-end (Express.js, FastAPI, Django), e-commerce (Shopify, OpenCart), and CMS (Wordpress, Laravel, Drupal, headless). Building web and mobile applications that deliver!