Guides 11792 Published by

This guide walks you through installing the privacy‑first Brave Browser on Ubuntu 22.04 LTS using only official Debian packages and a handful of terminal commands. It explains how Brave blocks ads, trackers, and fingerprinting out of the box and shares an anecdote about a user who switched from Safari after a driver hiccup, restoring smooth video playback without extra extensions. The steps are straightforward: add Brave’s GPG key, register the repository with a signed‑by entry, run apt update, install brave-browser, verify the version, and optionally pin the launcher to the dock for quick access. In short, the process mirrors any third‑party installation on Ubuntu—add a key, add a repo, update, and install—and Brave will stay current through regular APT updates that include security patches.



Installing Brave Browser on Ubuntu 22.04 LTS

Want a privacy‑first browser without the hassle of endless add‑on installs? This guide shows how to get Brave up and running on Ubuntu 22.04 LTS in minutes, using only official Debian packages and a couple of terminal tweaks.

Why Brave is Worth the Effort

Brave blocks ads, trackers, and fingerprinting by default. A user I know was frustrated after a bad driver update that left Safari stuck at 60 fps; switching to Brave restored smooth video playback in Chrome‑compatible sites without any extra extensions.

Step 1 – Add the Official Brave Repository

Open a terminal (Ctrl+Alt+T) and run:

sudo apt install curl gnupg -y
curl -fsSL https://brave-browser-apt-release.s3.brave.com/brave-core.asc | sudo gpg --dearmor -o /usr/share/keyrings/brave-browser-archive-keyring.gpg

The first command ensures curl and gnupg are present; the second fetches Brave’s signing key, preventing a “repository not trusted” error when adding the source list.

Step 2 – Register the Repository

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

Using a signed‑by entry guarantees that only packages from Brave’s own servers get installed.

Step 3 – Update and Install

sudo apt update
sudo apt install brave-browser -y

apt update pulls the latest package list; install fetches Brave itself. No additional dependencies are required beyond what Ubuntu already provides.

Step 4 – Verify the Installation

Launch it from Activities or run:

brave-browser --version

If it prints something like “Brave Browser 1.35.68” you’re good to go. The browser will open with a welcome tour; skip any optional extensions and stick to the defaults for maximum privacy.

Optional: Pin Brave to the Dock

After installing, right‑click Brave in Activities → Pin to dock (or use brave-browser --app-id if you prefer a dedicated launcher). This keeps it accessible without hunting through the menu.

That’s all. The process mirrors how most Ubuntu users install any third‑party software: add a key, add a repo, update, and install. Brave stays updated automatically via APT, so future security patches arrive just like system upgrades.