How to install Brave Browser on Arch-based Linux Distributions(Manjaro) ?
Last Updated :
07 Nov, 2022
Brave is a free, open-source cross-platform web browser developed and maintained by Brave Software Incorporation. With Brave, you can keep your browsing activity private by automatically disabling website trackers and blocking advertisements. It is built on top of Chromium, which is an open-source version of Google Chrome. It is primarily written in C++ programming language and was first released in 2016 under the MPL-2 license. You can download it for almost every major operating system including Android, iOS, macOS, Windows, and Linux. This article will discuss how to install the Brave browser on Arch-based Linux Distributions.
Installing Brave on Manjaro Linux
There are two ways to install Brave on Manjaro Linux
- Using Pacman package Manager
- Using Yay AUR helper
So, let's go through both the installation methods.
Using Pacman
Step 1: Update and upgrade your system running
$ sudo pacman -Syu
Step 2: Now, install brave from the arch repository using Pacman package manager.
$ sudo pacman -S brave-browser
Step 3: Verify the installation by checking the build version.
$ brave --version
Using Yay
Step 1: Install required dependencies/packages on the system.
$ sudo pacman -S --needed base-devel git
Step 2: Install yay by running the following set of commands.
$ git clone https://aur.archlinux.org/yay-git.git
$ cd yay-git
$ makepkg -sri
Step 3: Verify if Yay has been installed correctly by performing a version check.
$ yay --version
Step 4: Install the latest version of the brave by executing the following command:
$ yay -S brave-bin
Step 5: Verify the installation by performing a version check
$ brave --version
Using Brave on Manjaro Linux
Launch Brave by searching for it in the application menu.
Uninstallation of Brave
To uninstall Brave completely from your machine run
$ sudo pacman -Rncs brave-browser
Similar Reads
How to Install CLion IDE on Arch-based Linux Distributions (Manjaro) CLion (pronounced âSea Lionâ) is a cross-platform integrated development environment (IDE) developed by Jetbrains and is available as a free community edition for students and a commercial edition. It is used for developing C++ programs and is one of the most popular C++ IDE on the market. A number
2 min read
How to Install mongodb on Arch-based Linux Distributions(Manjaro) In this article, we are going to see how to install the MongoDB server on Arch-based Linux Distributions. We are going to use the Yay AUR helper, which is one of the many AUR helpers that can be used to install MongoDB or any other AUR package. Installation of MongoDB Step 1: Update and upgrade your
2 min read
How to install Postman on Arch-based Linux Distributions(Manjaro)? Postman is an HTTP client used to build, test, and modify APIs. It provides a graphical user interface through which developers can generate various types of HTTP requests like GET, POST, PUT, PATCH, and DELETE. It is used by more than 20 million developers across the globe to develop RESTful APIs.
1 min read
How to Install RubyMine on Manjaro (Arch-based Linux Distributions) ? The RubyMine integrated development environment (IDE) is used to develop applications in the Ruby programming language. It is developed by Jetbrains and is available as a free community edition for students and a commercial edition. The RubyMine coding environment supports highlighting, linting, cod
2 min read
How to Install PostgreSQL on Arch-based Linux Distributions (Manjaro) PostgreSQL (often called Postgres) is a free, open-source, and advanced relational database management system and is developed by The PostgreSQL Global Development Group. It is primarily written in the C Programming Language. In addition to SQL (relational) querying, Postgres also supports JSON (non
2 min read
How to install LibreOffice on Arch-based Linux Distributions(Manjaro) ? In this article, we will see how to install and configure LibreOffice on Arch-based Linux Distributions. LibreOffice is a free open-source office suite that allows users to create and edit documents, spreadsheets, presentations, and databases. It is available in more than 100 languages and is mainta
1 min read