How to Install Brave Browser on Linux

install brave browser linux

Brave is a fast, lightweight, and user-friendly web browser built on Chromium, the same engine behind Google Chrome. This means it offers a similar browsing experience and supports most Chrome extensions. Moreover, it’s free, open source, and works smoothly on Linux, making it a solid choice for users looking for performance and simplicity.

What sets Brave apart are its built-in privacy features, including ad and cookie blockers, as well as tools to block trackers and fingerprinting. It also offers a crypto rewards system, which some users appreciate while others may not find it useful. 

Brave has grown in popularity over the years, and if you’re using Linux, installing it is easy. Just add Brave’s official repository and use your package manager to install it from the command line. In this guide, we’ll demonstrate how to install Brave Browser in Linux.

Install Brave Browser on Debian-based Systems

If you’re using Ubuntu or another Debian-based distribution, you’ll need to add Brave’s official repository to your system. This allows your system to locate, install, and keep Brave updated directly from its trusted source.

For a profound understanding, go through these step-by-step instructions:

Step 1: Update Your System Repositories

First, let’s make sure your system is up to date. Open your terminal and run the command below:

sudo apt update

Step 2: Add Brave’s Security Key

Before we install Brave, we need to add its official security key to our system. This key ensures the browser comes from a trusted source:

sudo curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg
add security key

Step 3: Add the Brave Repository

Now, let’s tell your system where to find Brave online. To do this, run this command in your terminal:

echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main"|sudo tee /etc/apt/sources.list.d/brave-browser-release.list

This command creates a small config file that points your system to Brave’s software repository. After this, refresh your system’s package list so Ubuntu can recognize the newly added Brave repository and find its packages:

sudo apt update

Step 4: Install Brave Browser

Now, we are all set to install Brave Browser on our Linux machine. For this purpose, all we need to do is execute the following command:

sudo apt install brave-browser
install brave browser

Step 5: Open Brave Browser

Finally, you can navigate to your Apps menu, search for Brave Browser, and click on it to open it:

access brave browser gui

Alternatively, you can access it by typing brave-browser in your terminal:

brave-browser
open brave browser cli

Install Brave browser on Fedora, CentOS, and Red Hat

To install Brave on Fedora Linux and Red Hat-based systems, run the following commands step by step:

Step 1: Enable DNF Plugins

To install Brave on Fedora or Red Hat-based systems, you first need to install the DNF plugins core package. This adds extra features to your DNF package manager, allowing you to manage repositories more easily:

sudo dnf install dnf-plugins-core

Step 2: Add the Brave Repository

Next, you need to add the official Brave browser repository to your system. This allows DNF to locate and install Brave directly from Brave’s own package source:

sudo dnf config-manager --add-repo https://brave-browser-rpm-release.s3.brave.com/brave-browser.repo

Step 3: Import the Brave GPG Key

After adding the repository, you need to import Brave’s GPG key. This key is used to verify the packages you install, ensuring they are authentic:

sudo rpm --import https://brave-browser-rpm-release.s3.brave.com/brave-core.asc

Step 4: Install Brave Browser

Now that the repository is added and the GPG key is imported, you can install the Brave browser using DNF. To do this, use the following command to download and install the latest version of Brave on your system:

sudo dnf install brave-browser

Once the installation is complete, you can launch Brave from your application menu or by running the brave-browser command.

Install Brave on SUSE Linux

To install Brave on SUSE Linux, you’ll need to add the official Brave repository, import its GPG key, and use Zypper to install the browser. Here are stepwise instructions to install Brave on SUSU Linux:

Step 1: Install curl

First, make sure curl is installed. It’s a command-line tool used to transfer data from or to a server, and it’s often needed for downloading packages or keys:

sudo zypper install curl

Step 2: Import the Brave GPG Key

Next, import Brave’s GPG public key to ensure that the Brave packages you download are verified:

sudo rpm --import https://brave-browser-rpm-release.s3.brave.com/brave-core.asc

Step 3: Add the Brave Repository

Now, add Brave’s official repository to your system so Zypper knows where to find and download the Brave browser package:

sudo zypper addrepo https://brave-browser-rpm-release.s3.brave.com/brave-browser.repo

Step 4: Install Brave Browser

Finally, install the Brave browser using zypper. To do this, you can use the following command to download and install the latest version available from the Brave repository.

sudo zypper install brave-browser

After this, you can launch Brave from your application menu or by typing brave-browser in the terminal.

Install Brave on Arch-Based Linux Distributions

You can install Brave Browser on Arch Linux and Arch-based distributions like Manjaro using the Arch User Repository (AUR). Since Brave isn’t available in the official Arch repositories, you’ll need to install it from the AUR using an AUR helper like yay or paru.

Use the following command to install the precompiled binary version of Brave:

yay -S brave-bin

Finally, Brave will be ready to use after the installation. You can launch it by running the brave command in the terminal.

Conclusion

Brave Browser stands out as a privacy-focused, lightweight, and Chromium-based alternative to traditional browsers. Its built-in features like ad blocking, tracker protection, and a crypto rewards system make it a strong choice for users who value both speed and privacy. Whether you’re using a Debian-based system, Fedora, Red Hat, SUSE, or an Arch-based distribution, installing Brave on Linux is straightforward. In this article, we explained how you can easily install the Brave browser on any of these Linux distributions.

Installing Brave on a Linux system is simple when you have the right environment. Ultahost’s affordable VPS hosting plans offer full root access, NVMe SSD storage, and a secure platform. This makes it easy to install privacy-focused browsers like Brave across different Linux distributions with speed and control.

FAQ

Is Brave Browser available for all Linux distributions?
How is Brave different from Chrome or Chromium?
Can I use Chrome extensions in Brave?
What’s the easiest way to install Brave on Ubuntu or Debian?
Is Brave open source?
Can I install Brave from the Arch User Repository (AUR)?
How do I uninstall Brave Browser from Linux?

Related Post

Setting up BitrixVM Environment on CentOS

BitrixVM is a powerful and flexible virtual machine des...

Nohup Command in Linux

The Nohup command, which stands for "no hang up," is a ...

install fedora on virtualbox

How to Install Fedora on VirtualBox

The installation of Fedora using VirtualBox is a great ...

lsof Command in Linux with Examples

lsof command stands for "list open files" and it is inc...

How to Use the Linux Head Command

File handling is a day-to-day task of Linux users and a...

How to Use the Rsync Command in Linux

Rsync, which stands for "remote sync," is a powerful an...

Leave a Comment