diff --git a/docs/linuxInstall.md b/docs/linuxInstall.md index b89c9df68ac..432a9bf1d9c 100644 --- a/docs/linuxInstall.md +++ b/docs/linuxInstall.md @@ -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