Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Merge pull request #6121 from brave/apt-docs
Browse files Browse the repository at this point in the history
Apt docs
  • Loading branch information
bbondy committed Dec 9, 2016
2 parents 5ee0d07 + ef5f1ab commit b512c8f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions docs/linuxInstall.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,35 @@ Signed packages are on their way, but in the meantime you can use the following.
want to try installing `git` using the package manager for your distro._

## Debian AMD64:
To install brave using apt:
```
curl https://s3-us-west-2.amazonaws.com/brave-apt/keys.asc | sudo apt-key add -
deb https://s3-us-west-2.amazonaws.com/brave-apt jesse main
```

Upgrades can be done via:
```
apt-get update && apt-get upgrade -y
```

Alternatively you can install the deb directly but then you wont get automatic upgrades with apt
```
wget -O brave.deb https://laptop-updates.brave.com/latest/dev/debian64
sudo apt-get install -y gdebi && sudo gdebi brave.deb
```

## Ubuntu AMD64:
To install brave using apt:
```
curl https://s3-us-west-2.amazonaws.com/brave-apt/keys.asc | sudo apt-key add -
deb https://s3-us-west-2.amazonaws.com/brave-apt [xenial/trusty] main
```

Upgrades can be done via:
```
apt-get update && apt-get upgrade -y
```
Alternatively you can install the deb directly but then you wont get automatic upgrades with apt
```
wget -O brave.deb https://laptop-updates.brave.com/latest/dev/ubuntu64
sudo dpkg -i ./brave.deb
Expand Down

0 comments on commit b512c8f

Please sign in to comment.