
This tutorial will be helpful for beginners to install firefox 105 on Ubuntu 22.04 LTS, Ubuntu 20.04, and Linux Mint 21.
Introduction to Firefox?
Firefox is a web browser that’s known for its speed, security, and customizability. Firefox is available for Windows, macOS, Linux, and Android.
When you download Firefox, you’re getting a browser that’s made by a nonprofit organization that believes in your right to privacy. We never sell your data, and we don’t follow you around the web.
Firefox Features
Firefox also comes with Enhanced Tracking Protection turned on by default. This means that third-party trackers are blocked from collecting your data without your permission. And if you do give a site permission to track you, Firefox will strip out your name, email address, and other personal information so you can browse anonymously.
If you want even more control over your privacy, you can use Firefox’s built-in privacy tools to clear your history, cookies, and cache whenever you want. You can also set up Firefox to block all third-party cookies.
Firefox 105 Changelog
- Print only the current page from the print preview dialog
- Firefox is more averse to ran out of memory on Linux and furthermore performs better when memory is running short.
- Touchpad scrolling on macOS was made easier by reducing unintended diagonal scrolling on the opposite axis of the intended scroll axis.
- Memory fixes on the windows systems.
How to Install firefox on Ubuntu & Linux Mint?
Firefox can be installed on Ubuntu and Linux Mint via 4 methods.
- Method 1: Via PPA
- Method 2: Via SNAP
- Method 3: Via Flatpak
- Method 4: Via Tarball
Install Firefox – PPA Method
If you’re using Ubuntu, Firefox browsers are the default browsers on Ubuntu, if you want to use the latest version just update the system, from Ubuntu repositories it will get updated to the latest version.
sudo apt update -y && sudo apt upgrade -y
Install Firefox via SNAP Store
Firefox can be installed from the SNAP store using the below command
sudo snap install firefox
Install Firefox via Flatpak.
Step 1: Install Flatpak on your system using the setup guide
Step 2: Install Firefox
flatpak install flathub org.mozilla.firefox
Step 3: Run Firefox
flatpak run org.mozilla.firefox
Install Firefox using Tarball
Step 1: Download the Firefox tarball from the Mozilla FTP website
Step 2: Extract the contents of the tar package to /opt
tar -xf firefox-105.0.tar.bz2 -C /opt/
Step 3: Create symbolic links and set firefox 105 as the default
sudo mv /usr/bin/firefox /usr/bin/firefox.old && sudo ln -s /opt/firefox/firefox /usr/bin/firefox
How to Remove Firefox Browser
If you are planning to uninstall the Firefox browser, you can uninstall it by using the below commands based on the approaches
sudo apt autoremove firefox -y
To Uninstall firefox from Snap use the below command
sudo snap disable firefox && sudo snap remove --purge firefox
To Uninstall firefox from flathub use the below command
flatpak uninstall org.mozilla.firefox
Conclusion
From this tutorial, you have learned how to download and install the Firefox browser on Ubuntu 22.04, Linux Mint, and Debian.
Do let us know your comments and feedback in the comments section below.
If my articles on TipsonUNIX have helped you, kindly consider buying me a coffee as a token of appreciation.
Thank You for your support!!