Created
April 29, 2022 17:01
-
-
Save TylerDurham/5ecb1c759d7671f66f9b8cbbe401efbb to your computer and use it in GitHub Desktop.
Installs the Brave Browser package for Debian/Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/bash | |
| 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 |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Run it on Ubuntu: