Site icon DesignLinux

How to Install Firefox 93 in Linux Desktop

Firefox 93 officially released for all major OS e.g. Linux, Mac OSX, Windows, and Android. The binary package is now available for download for Linux (POSIX) systems, grab the desired one, and enjoy browsing with new features added to it.

What’s new in Firefox 93

This new release comes with the following features:

New Firefox has also added lots of new interesting features to Android as well. So, don’t wait, just grab the latest Firefox for Android from Google Play Store and have fun.

Install Firefox 93 in Linux Systems

Ubuntu users will always get the latest version of Firefox via default Ubuntu’s update channel. But the upgrade isn’t yet available and if you are curious to try it, there is an official Mozilla PPA to test the new version of Firefox on Ubuntu and its derivatives.

Install Firefox on Ubuntu

$ sudo add-apt-repository ppa:mozillateam/firefox-next
$ sudo apt update && sudo apt upgrade
$ sudo apt install firefox

On other Linux distributions, you can install Firefox 93 stable from tarball sources in Debian and Red Hat-based distributions such as CentOS, Fedora, Rocky Linux, AlmaLinux, etc.

The download link for Mozilla Firefox tarballs can be found by accessing the below link.

The process of installing the latest version of Firefox from archive sources is similar for Ubuntu and CentOS desktop versions. To begin with, log in to your desktop and open a terminal console.

Then, issue the below commands in your terminal in order to download and install Firefox from tarball sources. The installation files will be placed in your distribution /opt directory.

For 32-Bit OS
$ cd /opt
$ sudo wget https://download-installer.cdn.mozilla.net/pub/firefox/releases/93.0/linux-i686/en-US/firefox-93.0.tar.bz2
$ sudo tar xfj firefox-93.0.tar.bz2
For 64-Bit OS
$ cd /opt
$ sudo wget https://download-installer.cdn.mozilla.net/pub/firefox/releases/93.0/linux-x86_64/en-US/firefox-93.0.tar.bz2
$ sudo tar xfj firefox-93.0.tar.bz2

After Firefox application files had been decompressed and installed to /opt/firefox/ system path, execute the below command to first launch the browser. The latest version of Firefox should open in your system.

$ /opt/firefox/firefox

Now close the firefox, and remove the old version of firefox and create a symbolic link to the new Firefox version as default.

$ sudo mv /usr/bin/firefox /usr/bin/firefoxold
$ sudo ln -s /opt/firefox/firefox /usr/bin/firefox

Launch Mozilla Firefox by navigating to Applications -> Internet menu where a new Firefox launcher should appear. In Ubuntu desktop just search for firefox in Activity dash.

After hitting on the shortcut icon, you should see the new Mozilla Quantum browser in action in your system.

Firefox Quantum

Congratulations! You have successfully installed Firefox 93 browser from a tarball source file in Debian and RHEL/CentOS Linux distributions.

Note: You can also install Firefox with a package manager called ‘yum‘ or ‘dnf‘ for RHEL-based and ‘apt-get‘ or ‘apt‘ for Debian-based distributions, but the available version may be a little older.

$ sudo apt install firefox     [On Debian, Ubuntu and Mint]
$ sudo yum install firefox     [On RHEL/CentOS/Fedora and Rocky Linux/AlmaLinux]
Exit mobile version