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 :: git reset amend 
Shell :: (END) windows command line 
Shell :: bash script remove first element of array and shift index 
Shell :: abort git merge 
Shell :: pm2 adonis 5 
Shell :: remove all .orig files mac terminal 
Shell :: wslinux export 
Shell :: clean cache in linux 
Shell :: git bypass hook 
Shell :: ubuntu console shrink pdf 
Shell :: heroku buildpacks remove 
Shell :: turn off bluetooth by default ubuntu 20.04 
Shell :: raspberry config command line 
Shell :: ssh key git 
Shell :: set environamnt variable in service linux 
Shell :: how to manage icloud drive in terminal 
Shell :: how to check eigen version 
Shell :: ubuntu sudo no password 
Shell :: git change email 
Shell :: service supervisor restart 
Shell :: node upgrade mac os x 
Shell :: install virtualmin 
Shell :: install composer wsl 
Shell :: completely uninstall apache2 
Shell :: selinux disable 
Shell :: install sequelize cli 
Shell :: close all localhost connections 
Shell :: how to install pyqt5 
Shell :: apt install gnome desktop 
Shell :: perl reverse shell 
ADD CONTENT
Topic
Content
Source link
Name
1+9 =