January 27, 2025

Install Brave Browser on Linux Ubuntu Using Command Line

In this tutorial, we explain how to install Brave Browser on Linux Ubuntu by using the Linux Ubuntu command line. We also explain how to test the installation. The YouTube tutorial is given below.

In this tutorial, we are using Linux Ubuntu 24.04.

The first step is to install curl

sudo apt update && sudo apt upgrade
sudo apt install curl
curl --version

Once, curl is installed, we can install Brave Browser by executing the following commands in the Linux Ubuntu terminal

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

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

sudo apt update

sudo apt install brave-browser

To run Brave Browser, simply run in the terminal

brave-browser