- firefox
- Details for firefox
- Enable snaps on Arch Linux and install firefox
- Enable snapd
- Install firefox
- firefox on Arch Linux
- 2. Uninstall / Remove firefox package
- 3. Details of firefox package
- 4. References on Arch Linux
- 5. The same packages on other Linux Distributions
- How to Install Firefox on Arch Linux/Manjaro in One Line of Command
- Installation
- Firefox
- Firefox Developer Edition
- Firefox Nightly
- Firefox Extended Support Release (LTS)
- Firefox Beta
- See Also
- Comments
- More Posts
- Install Microsoft Edge on Arch Linux/Manjaro in One Line of Command
- Two Ways to Install Packages from AUR on Arch Linux/Manjaro
- Install Google Chrome on Arch Linux/Manjaro in One Line of Command
- Configure PPPoE DSL Connection on Arch Linux/Manjaro with pppoe-setup
firefox
Firefox is a powerful, extensible web browser with support for modern web application technologies.
Details for firefox
License
Last updated
Links
Enable snaps on Arch Linux and install firefox
Snaps are applications packaged with all their dependencies to run on all popular Linux distributions from a single build. They update automatically and roll back gracefully.
Snaps are discoverable and installable from the Snap Store, an app store with an audience of millions.
Enable snapd
On Arch Linux, snap can be installed from the Arch User Repository (AUR). The manual build process is the Arch-supported install method for AUR packages, and you’ll need the prerequisites installed before you can install any AUR package. You can then install snap with the following:
git clone https://aur.archlinux.org/snapd.git cd snapd makepkg -si
Once installed, the systemd unit that manages the main snap communication socket needs to be enabled:
sudo systemctl enable --now snapd.socket
To enable classic snap support, enter the following to create a symbolic link between /var/lib/snapd/snap and /snap :
sudo ln -s /var/lib/snapd/snap /snap
Either log out and back in again, or restart your system, to ensure snap’s paths are updated correctly.
Install firefox
To install firefox, simply use the following command:
sudo snap install firefox
firefox on Arch Linux
Here is a brief guide to show you how to install firefox package:
2. Uninstall / Remove firefox package
Please follow the guidance below to uninstall firefox package:
3. Details of firefox package
Repository : extra
Name : firefox
Version : 104.0.1-1
Description : Standalone web browser from mozilla.org
Architecture : x86_64
URL : https://www.mozilla.org/firefox/
Licenses : MPL GPL LGPL
Groups : None
Provides : None
Depends On : gtk3 libxt mime-types dbus-glib ffmpeg nss ttf-font
libpulse
Optional Deps : networkmanager: Location detection via available WiFi networks
libnotify: Notification integration
pulseaudio: Audio support
speech-dispatcher: Text-to-Speech
hunspell-en_US: Spell checking, American English
xdg-desktop-portal: Screensharing with Wayland
Conflicts With : None
Replaces : None
Download Size : 63.01 MiB
Installed Size : 234.53 MiB
Packager : Jan Alexander Steffens (heftig)
Build Date : Tue Aug 30 16:20:38 2022
Validated By : MD5 Sum SHA-256 Sum Signature
4. References on Arch Linux
5. The same packages on other Linux Distributions
firefox (104.0+build3-0ubuntu0.18.04.1) Ubuntu 18.04 LTS (Bionic Beaver)
firefox (88.0+build2-0ubuntu0.16.04.1) Ubuntu 16.04 LTS (Xenial Xerus)
firefox (89.0+build2-0ubuntu0.21.04.1) Ubuntu 21.04 (Hirsute Hippo)
firefox (88.0.1+build1-0ubuntu0.20.10.2) Ubuntu 20.10 (Groovy Gorilla)
firefox (94.0+build3-0ubuntu0.21.10.1) Ubuntu 21.10 (Impish Indri)
firefox (1:1snap1-0ubuntu2) Ubuntu 22.04 LTS (Jammy Jellyfish)
How to Install Firefox on Arch Linux/Manjaro in One Line of Command
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
Firefox Developer Edition
$ sudo pacman -S firefox-developer-edition
$ yay -S firefox-developer-edition
Firefox Nightly
$ sudo pacman -S --needed git && git clone https://aur.archlinux.org/firefox-nightly.git && cd firefox-nightly && makepkg -si
Firefox Extended Support Release (LTS)
$ sudo pacman -S --needed git && git clone https://aur.archlinux.org/firefox-esr-bin.git && cd firefox-esr-bin && makepkg -si
Firefox Beta
$ sudo pacman -S --needed git && git clone https://aur.archlinux.org/firefox-beta-bin.git && cd firefox-beta-bin && makepkg -si
See Also
Comments
More Posts
Install Microsoft Edge on Arch Linux/Manjaro in One Line of Command
Microsoft Edge is growing fast since it embraced the power of Chromium. According to some online data, it has become the 3rd most popular browser. And funny enough, it supports Linux too. .deb and .rpm packages are available from the official site, also some AUR packages maintenance by the community for Arch Linux users.
Two Ways to Install Packages from AUR on Arch Linux/Manjaro
Just like Debian/Ubuntu’s package manager apt, Arch Linux/Manjaro has its own package manager called pacman to help you install packages. But the story doesn’t end there. On Arch-based Linux you can even install community-maintained packages from AUR (Arch User Repository), which is a lot like PPA (Personal Package Archive) of Ubuntu.
Install Google Chrome on Arch Linux/Manjaro in One Line of Command
If you just migrated to Arch-based Linux from Ubuntu or Mint, things could be a little confusing since Arch Linux uses a different package manager called pacman. I recently wrote a post about how to install packages on Arch Linux, but if you want a no-brainer installation with a single line of command, here it is.
Configure PPPoE DSL Connection on Arch Linux/Manjaro with pppoe-setup
Most ISPs (Internet Service Providers) offer multiple dynamic IP addresses and even come with a static one. To take advantage of that, we’ll be setting up a PPPoE (Point-to-Point Protocol over Ethernet) DSL (Digital Subscriber Line) connection on our own machine to obtain an independent IP address.