How to Install Firefox on Arch Linux/Manjaro in One Line of Command
Last modified
Mozilla Firefox is the default web browser for many Linux distros since it's fully open source, there are also several AUR (Arch User Repository) packages for different versions of Firefox for Arch based Linux. To install them is quite easy, either install with pacman
directly or using AUR helpers like yay
.
Installation
Installing Firefox from AUR also installs the following required libraries and packages as dependencies:

Firefox
-
Using
pacman
sudo pacman -S firefox Bash
-
Using
yay
yay -S firefox Bash
Firefox Developer Edition
-
Using
pacman
sudo pacman -S firefox-developer-edition Bash
-
Using
yay
yay -S firefox-developer-edition Bash
Firefox Nightly
-
Using
pacman
sudo pacman -S --needed git && git clone https://aur.archlinux.org/firefox-nightly.git && cd firefox-nightly && makepkg -si Bash
-
Using
yay
yay -S firefox-nightly Bash
Firefox Extended Support Release (LTS)
-
Using
pacman
sudo pacman -S --needed git && git clone https://aur.archlinux.org/firefox-esr-bin.git && cd firefox-esr-bin && makepkg -si Bash
-
Using
yay
yay -S firefox-esr-bin Bash
Firefox Beta
-
Using
pacman
sudo pacman -S --needed git && git clone https://aur.archlinux.org/firefox-beta-bin.git && cd firefox-beta-bin && makepkg -si Bash
-
Using
yay
yay -S firefox-beta-bin Bash
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
- Install Microsoft Edge 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