LibreWolf is a Firefox fork that focuses on privacy and security by eliminating telemetry, which can be invasive to your personal information, along with increased protection against tracking and fingerprinting techniques and a few security improvements.
In the following tutorial, you will learn how to install LibreWolf Browser on Linux Mint 20 release series. The tutorial will go over importing the official repository and gpg key and updating and removing the browser.
Table of Contents
Update Linux Mint
Before proceeding with the tutorial, ensuring your system is up-to-date with all existing packages is good.
sudo apt update && sudo apt upgrade -y
Install Required Packages
The following dependencies will need to be installed to install LibreWolf successfully. Most of these packages are already on your system, but running the command can help ensure they’re installed.
sudo apt install curl apt-transport-https gnupg2 ubuntu-keyring -y
If you skip and encounter issues, return and just run the command.
Install LibreWolf Browser
The first step is to import the GPG key to verify the authenticity of the packages. In your terminal, execute the following command to import to your keychain.
sudo wget -O- https://deb.librewolf.net/keyring.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/librewolf.gpg
Next, import the LibreWolf repository.
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/librewolf.gpg] http://deb.librewolf.net $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/signal-messenger.list
Now run an APT update to reflect the newly imported repository.
sudo apt update
Finally, you can install the LibreWolf browser using the following command.
sudo apt install librewolf -y
How to Launch LibreWolf Browser
Now that you have the privacy-focused browser installed, launching can be done in a few ways.
Using the command line terminal, you can open the browser quickly by using the following command.
librewolf
The best way to use LibreWolf for desktop users that prefer not to use the command line terminal is to open the GUI of the application by following the path.
Taskbar > Internet > LibreWolf.
Example:
Next, you will see the default LibreWolf window, similar to Firefox as you would expect but very stripped back.
Example (Click to Expand):
How to Update LibreWolf
The browser should update itself with your system packages for desktop users using the APT package manager. For users who want to check manually, use the following command in your terminal.
sudo apt update && sudo apt upgrade
How to Remove (Uninstall) LibreWolf
When you no longer want the video conference software installed on your system, use the following command to remove it.
sudo apt autoremove librewolf --purge -y
Remove the repository if you plan not to re-install LibreWolf again.
sudo rm /etc/apt/sources.list.d/librewolf.list
After removing the repository list file, remove the GPG.
sudo rm https://deb.librewolf.net/keyring.gpg
Comments and Conclusion
If you are one of those people who would like to see Firefox without telemetry, then LibreWolf is the browser for you. Firefox’s fork focuses on privacy and security by eliminating telemetry and adding other perks.