Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install brave browser on linux

sudo apt install apt-transport-https curl gnupg

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 -

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

sudo apt update

sudo apt install brave-browser
Comment

brave browser linux

# install Brave in one go
sudo apt install apt-transport-https curl gnupg && 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 - && 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 && sudo apt update && sudo apt install brave-browser

# using snap
sudo snap install brave
Comment

install brave on linux

sudo apt install apt-transport-https curl

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 arch=amd64] 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
Comment

PREVIOUS NEXT
Code Example
Shell :: install brave on linux 
Shell :: git origin command 
Shell :: linux checksum file 
Shell :: Sublime Text install Ubuntu/Debian 
Shell :: encrypt zip password 
Shell :: pip install git branch 
Shell :: ionic cordova generate component 
Shell :: ngrok command 80 not found 
Shell :: git log with branch tree 
Shell :: copy folder linux 
Shell :: replace using sed 
Shell :: poetry python 
Shell :: install bootstrap in angular 10 
Shell :: install mongo compass 
Shell :: start uvicorn 
Shell :: sudo rm rf command 
Shell :: stacer ubuntu 
Shell :: how to install git in ubuntu ? 
Shell :: http sever with ssl start 
Shell :: shell sort algorithm is an example of? 
Shell :: build cordova app command 
Shell :: one liner powershell download file 
Shell :: install postman desktop ubuntu 
Shell :: Could not find an NgModule. Use the skip-import option to skip importing in NgModule. 
Shell :: valet phpmyadmin 404 
Shell :: git lang 
Shell :: git change master branch 
Shell :: how to exit docker 
Shell :: git pull sith ssh key 
Shell :: no matching manifest for linux/arm64/v8 in the manifest list entries 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =