Wednesday, August 16, 2023

Brave Brower installation in Ubuntu 23.04

 To install Brave browser on Ubuntu 23.04, you can follow these steps:

1. Open the terminal.
2. Install the `curl` command line download tool by running the following command:
   
sudo apt install curl
   
3. Download and install the GPG key by running the following command:
   

sudo curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg
   
4. Add the Brave apt source repository by running the following command:
   
echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main" | sudo tee /etc/apt/sources.list.d/brave-browser-release.list
   
5. Update the package cache by running the following command:
   
sudo apt update
   
6. Install Brave browser by running the following command:
   
sudo apt install brave-browser
   
7. Once the installation is complete, you can launch Brave browser from the system menu.

0 Comments: