TechTorch

Location:HOME > Technology > content

Technology

How to Install Brave Browser on Linux

March 10, 2025Technology3593
How to Install Brave Browser on Linux The Brave browser is a popular c

How to Install Brave Browser on Linux

The Brave browser is a popular choice for those seeking a privacy-focused browsing experience. Whether you're a seasoned Linux user or new to the platform, this guide will walk you through the process of setting up Brave on your Linux system.

Introduction to Brave Browser

Brave is a free, open-source web browser that prioritizes user privacy and offers features like blocking ads, trackers, and miners by default. It also includes enhanced security features and a streamlined user interface, making it a preferred choice for many internet users.

System Requirements

Before diving into the installation process, it's important to ensure your system meets the minimum requirements:

4 GB of RAM 500 MB of free hard drive space

1. Install via Package Manager

For users who prefer a simpler approach, you can install Brave from your Linux distribution's package manager. This method ensures that you get the latest stable version of Brave and ensures compatibility with your distribution.

Ubuntu 18.04

First, add the Brave repository to your system's sources list: sudo apt install software-properties-common apt-transport-https sudo curl -fsSLo _KEY Add the repository URL: sudo add-apt-repository "deb [archamd64] $(lsb_release -cs) main" Update your package list: sudo apt update Install Brave: sudo apt install brave-browser

Debian 9

Add the Brave repository to your system: curl -fsSLo Configure your repository: echo "deb [signed-by] stable main" | sudo tee Update your package list: sudo apt update Install Brave: sudo apt install brave-browser

2. Manual Installation via .deb Package

If your package manager doesn't have Brave or you prefer to install the latest version, you can download the .deb package directly from the Brave website and install it manually.

Go to the Brave website and download the appropriate .deb file for your Linux distribution. Run the following command to install the downloaded package: sudo dpkg -i brave-browser__ If there are any dependencies missing, install them using: sudo apt-get install -f Launch Brave from your applications menu or desktop shortcut.

3. Installing from Source Code

For advanced Linux users who want to build Brave from source code, you can do so by following these steps. This process requires familiarity with command-line tools and software development environments.

Install the necessary dependencies: sudo apt install build-essential git cmake libsecret-1-dev libxss1 libappindicator1 libindicator7 Clone the Brave source code from the official repository: git clone Build and install Brave: cd brave-browser
./script/build Create a desktop shortcut to the compiled binary if needed: sudo ln -s /path/to/build/Brave Launch Brave from the command line or desktop shortcut.

Conclusion

Installing Brave on your Linux system is straightforward, whether you use your package manager, download a .deb file, or compile from source. The choice depends on your preference and system configuration. By following this guide, you can enjoy a fast, private, and secure browsing experience on your Linux machine.

Keywords:

Brave Browser Linux Installation Open Source