TL;DR
To learn how to install Brave Browser in Ubuntu, follow these steps:
- Update the system with the command:
sudo apt update
. - Install the necessary dependencies:
sudo apt install apt-transport-https curl.
- Import the Brave Browser keyring:
curl -s https://brave-browser-apt-release.s3.brave.com/brave-core.asc | sudo apt-key --keyring /etc/apt/trusted.gpg.d/brave-browser-release.gpg add -
. - Add the Brave Browser repository to the sources list:
echo "deb [arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main" | sudo tee /etc/apt/sources.list.d/brave-browser-release.list.
Continue reading the guide below to learn how to install Brave Browser in Linux, how to configure it, and common errors with possible solutions.
Finding a fast, secure, and private web browser for Linux can be frustrating. But don’t worry, Brave Web Browser offers a great solution. In this post, I’ll show you how to install Brave browser on Linux step-by-step. You’ll also get tips to configure Brave for the best performance and security. By the end, you’ll have a powerful browser that protects your privacy and speeds up your browsing. Let’s get started!
What is Brave Web Browser?
Brave is a web browser designed to prioritize your privacy and security while you browse the internet. It was created by Brendan Eich, the co-founder of Mozilla and the creator of JavaScript. Brave aims to offer a faster, safer, and more private browsing experience.
Unique Features
- Privacy Protection: Brave automatically blocks trackers and ads that invade your privacy. This means you can browse without being followed by advertisers or having to see annoying ads.
- Speed and Performance: By blocking ads and trackers, Brave loads web pages much faster than other browsers. According to Brave, it can load pages up to three times faster on desktop and up to eight times faster on mobile.
- BAT (Basic Attention Token) Rewards System: Brave has a unique feature called the BAT rewards system. You can earn BAT tokens by choosing to see privacy-respecting ads. These tokens can then be used to tip your favorite websites, support content creators, or even be traded like other cryptocurrencies.
- Lower Memory Usage: Brave uses less memory than browsers like Chrome, which can help improve your computer’s performance and reduce battery drain on laptops.
How to Install Brave Browser in Ubuntu
To install Brave Web Browser on Linux, open your terminal and run sudo apt update
, then sudo apt install apt-transport-https curl
. Next, import the Brave key with curl -s https://brave-browser-apt-release.s3.brave.com/brave-core.asc | sudo apt-key add -
.
Add the Brave repository with echo "deb [arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main" | sudo tee /etc/apt/sources.list.d/brave-browser-release.list
. Update again with sudo apt update
and install Brave using sudo apt install brave-browser
. Verify by typing brave-browser
.
That was the quick answer. Here are the detailed steps to install Brave browser on Linux:
- Open the Terminal by pressing Ctrl + Alt + T.
- Run the following command to update the system:
sudo apt update
This command fetches the latest package information from the software repositories.
- To install Brave successfully, you need to ensure that the required dependencies are present on your system. Run the following command to install the necessary dependencies:
sudo apt install apt-transport-https curl
This command installs the dependencies required for Brave to function properly.
- Import the Brave Browser keyring by running the following command:
curl -s https://brave-browser-apt-release.s3.brave.com/brave-core.asc | sudo apt-key --keyring /etc/apt/trusted.gpg.d/brave-browser-release.gpg add -
This command adds the GPG keyring for Brave to the trusted key list.
- Add the Brave Browser repository to the sources list:
echo "deb [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 adds the Brave repository to the sources list for package management.
- Update the package manager:
sudo apt update
This command updates the package manager to fetch the latest information about available updates.
- Finally, install Brave Web Browser on Linux by running the following command:
sudo apt install brave-browser
The command will install Brave Web Browser on your system.
- To ensure that Brave is successfully installed on your Linux system, type the following command:
brave-browser
If Brave opens without any errors, the installation is successful.
- The Brave Browser interface will look like this:
- Execute the following command to update Brave Web Browser:
sudo apt upgrade brave-browser
This command will upgrade the Brave Web Browser to the latest available version.
Configuration Tips for Optimal Performance of Brave Browser
Unlock the full potential of Brave Web Browser by optimizing its performance and enhancing your online security. Here are four essential configuration tips to ensure you get the most out of your Brave browsing experience:
- 🔒 Secure Your Browsing with Shields Settings: Brave’s Shields feature protects you from unwanted ads, trackers, and malicious scripts. Access it by clicking the lion icon next to the address bar. Customize options like blocking third-party cookies, enabling HTTPS upgrades, and adjusting script-blocking settings to enhance your privacy and security.
- ⚙️ Customize Brave’s Preferences: Make Brave your own by exploring its preferences menu. Click the three horizontal lines in the top-right corner and select Settings. Here, you can adjust appearance settings, set your preferred search engine, and manage default browser behavior to improve your browsing efficiency and satisfaction.
- 🚀 Optimize Brave’s Performance: Boost Brave’s performance by enabling hardware acceleration. Go to Settings, then Additional Settings, and under System, toggle on Use hardware acceleration when available. This leverages your system’s graphics capabilities for smoother, faster browsing, especially on multimedia-rich websites.
- 🔄 Keep Brave Up to Date: Ensure you have the latest security patches and features by enabling automatic updates. Go to Settings, select About Brave, and toggle on Automatically update Brave. This keeps Brave up to date with the latest enhancements and protections against emerging threats, maintaining a secure browsing environment.
Ubuntu Install Brave Browser: Wrapping It Up
In this article, I have explored how to install Brave Web Browser on Linux through a detailed step-by-step guide. I walked you through preparing your system, adding the necessary repositories, and installing Brave. Additionally, I have covered essential configuration tips to optimize Brave’s performance and security, ensuring you get the most out of your browsing experience.
If you found this guide helpful, you might also be interested in learning more about related topics
- Fixing the “You Have Held Broken Packages” error on Linux, which helps solve common issues that stop software from installing
- Resolving the “wget command not found” issue, to learn how to install and configure wget for downloading files
- Clearing the apt cache in Ubuntu, to free up space and keep your package manager running smoothly