How to Install Firefox on Arch Linux/Manjaro in One Line of Command
Last modified on .
Mozilla Firefox is the default web browser for many Linux distros since it's fully open source, there are also several official and Arch user packages for different versions of Firefox for Arch-based Linux. To install them is quite easy, either installing with pacman
directly or using AUR helpers like yay
.
Installation
Installing Firefox from the repository also installs the following required libraries and packages as dependencies:
Firefox
-
Using
pacman
$ sudo pacman -S firefox
-
Using
yay
$ yay -S firefox
Firefox Developer Edition
-
Using
pacman
$ sudo pacman -S firefox-developer-edition
-
Using
yay
$ yay -S firefox-developer-edition
Firefox Nightly
-
Using
pacman
$ sudo pacman -S --needed git && git clone https://aur.archlinux.org/firefox-nightly.git && cd firefox-nightly && makepkg -si
-
Using
yay
$ yay -S firefox-nightly
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
-
Using
yay
$ yay -S firefox-esr-bin
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
-
Using
yay
$ yay -S firefox-beta-bin
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