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 :: watch and compile scss command 
Shell :: terminal get size of file 
Shell :: how to run docker not with sudo 
Shell :: change ubuntu username 
Shell :: git project root 
Shell :: how to verify my ssh key password 
Shell :: Google Chrome freeze uploading a file ubuntu 22.04 
Shell :: copy a file from docker container to local machine 
Shell :: applescript open new terminal tab 
Shell :: docker desktop kubernetes dashboard 
Shell :: where is www folder ubuntu 
Shell :: how to read input in bash 
Shell :: git tutorial remove branches on local that do not exist on remote 
Shell :: npm install package globally 
Shell :: prometheus reload 
Shell :: npm slugify 
Shell :: composer install mac 
Shell :: git undo merge 
Shell :: open podfile in xcode from terminal 
Shell :: rmdir directory not empty 
Shell :: bash single vs double quotes 
Shell :: git merge main into branch 
Shell :: how to set meld as git difftool 
Shell :: awk print 3rd column 
Shell :: install angular ubuntu 
Shell :: how to open .bin file in linux 
Shell :: delete a file from repo history 
Shell :: @mui/material npm 
Shell :: ubuntu list of users 
Shell :: how to pull changes from master to forked repo 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =