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

Install brave in ubuntu

sudo apt install apt-transport-https curl

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 yacc on ubuntu 
Shell :: ubuntu start php 
Shell :: install docker linux mint 
Shell :: how to reload bashrc 
Shell :: change remote url git 
Shell :: unity logcat 
Shell :: du sort by size 
Shell :: how to find and replace a string in a file using shell script 
Shell :: linux enable scroll lock 
Shell :: restart ubuntu from terminal 
Shell :: docker install script 
Shell :: zsh check if directory exists 
Shell :: git apply stash 
Shell :: linux show groups 
Shell :: flutter errors shader compilation error 
Shell :: Install django requirements from txt file 
Shell :: install certbot ubuntu 20.04 nginx 
Shell :: pod deintegrate 
Shell :: centos install netstat 
Shell :: pip install psycopg2 error fedora 
Shell :: how to see the history of the cmd 
Shell :: voice recorder for ubuntu 
Shell :: steam is not in the sudoers file. 
Shell :: conda install lightgbm 
Shell :: yarn: command not found 
Shell :: check postgres process in mac 
Shell :: install snap debian 
Shell :: grep before and after 
Shell :: build-essential arch 
Shell :: install multiselectfield 
ADD CONTENT
Topic
Content
Source link
Name
3+3 =