summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2017-09-29 18:50:10 +0200
committerKali Kaneko <kali@leap.se>2017-10-04 01:56:46 +0200
commit0db87dec6c518cba8ea24b474be3f145f3510759 (patch)
tree5cf47ac1295521ea7be1066a5e8a85d28aa1535b
parent4bd5eae7719b03e35d0103b11c4483f1ea4aa0c6 (diff)
create separate page for debian repos
-rw-r--r--pages/install/linux/debs/en.md50
-rw-r--r--pages/install/linux/en.md8
2 files changed, 54 insertions, 4 deletions
diff --git a/pages/install/linux/debs/en.md b/pages/install/linux/debs/en.md
new file mode 100644
index 0000000..d2ea72e
--- /dev/null
+++ b/pages/install/linux/debs/en.md
@@ -0,0 +1,50 @@
+@title = 'Bitmask debian/ubuntu repositories'
+@nav_title = 'Bitmask debian/ubuntu repositories'
+
+# Supported distributions
+
+At the moment of writing this, we provide packages for **ubuntu** ``zesty`` (17.04) and **debian** ``stretch`` (stable) and ``buster`` (testing).
+You can try the [[ standalone bundles => /en/install/linux/#standalone-bundles ]] if your distribution is not supported.
+
+Change ``stretch`` in the following instructions for the one you are using:
+
+```
+sudo apt install leap-archive-keyring
+sudo sh -c 'echo "deb http://deb.leap.se/client stretch release" > /etc/apt/sources.list.d/bitmask.list'
+sudo apt update && sudo apt install bitmask-qt bitmask-vpn bitmask-mail
+```
+
+# Sources for stable, staging and master
+
+Above, the ``release`` component tracks only the stable releases. This is probably what you want to use.
+
+If you want alpha versions and rcs, use ``staging`` in your ``/etc/apt/sources.list.d/bitmask.list`` file, like this:
+
+```
+sudo gedit /etc/apt/sources.list.d/bitmask.list
+deb http://deb.leap.se/client stretch staging
+```
+
+If you want to have the bleeding edge, use ``master`` instead. Beware that this can be unstable at times:
+
+```
+deb http://deb.leap.se/client stretch master
+```
+
+
+# Removing the Bitmask packages
+
+If you want to remove bitmask from your system:
+
+```
+sudo -s
+apt remove bitmask-qt leap-archive-keyring
+rm /etc/apt/sources.list.d/bitmask.list
+```
+
+You probably also want to wipe all the files in your local user account, in:
+
+
+```
+~/.config/leap/
+```
diff --git a/pages/install/linux/en.md b/pages/install/linux/en.md
index a93cb8b..eddffda 100644
--- a/pages/install/linux/en.md
+++ b/pages/install/linux/en.md
@@ -5,7 +5,7 @@
<%= render({:partial => 'common/download_button'}, {:link => 'https://dl.bitmask.net/client/linux/stable/Bitmask-linux64-latest.tar.gz', :text => 'Download Stable Bundle (64 bit)'}) %>
-The [[signature => https://dl.bitmask.net/client/linux/stable/Bitmask-linux64-latest.tar.gz.asc]] can be [[verified => signature-verification]] using LEAP's archive signing key. You can also browse [[all the downloads => https://dl.bitmask.net/client/linux]], including release candidates.
+The [[signature => https://dl.bitmask.net/client/linux/stable/Bitmask-linux64-latest.tar.gz.asc]] can be [[verified => signature-verification]] using LEAP's archive signing key. You can browse [[all the downloads => https://dl.bitmask.net/client/linux]], including release candidates.
# Experimental bundles
@@ -17,13 +17,13 @@ If you want to try the latest code, new bundles are continously built.
```
sudo apt install leap-archive-keyring
-sudo sh -c 'echo "deb http://deb.leap.se/client stretch release" >> /etc/apt/sources.list'
+sudo sh -c 'echo "deb http://deb.leap.se/client stretch release" > /etc/apt/sources.list.d/bitmask.list'
sudo apt update && sudo apt install bitmask-qt bitmask-vpn bitmask-mail
```
-Change ``stretch`` for ``zesty`` or ``buster``, according to your distro. [[ Read more => debs ]] about our different repositories.
+Change ``stretch`` for ``zesty`` or ``buster``, according to your distro. Read more about [[ our different repositories => debs ]] for deb packages.
# Other
-If none of the above methods works for you, you can try to install [[ via pip => 'http://bitmask.readthedocs.io/en/latest/installation/index.html#installing-with-pip' ]] or [[ from source => 'http://bitmask.readthedocs.io/en/latest/hacking/index.html#devenv' ]], or get in contact with us if you want to package Bitmask for some other distribution.
+If none of the above methods works for you, you can try to install [[via pip => http://bitmask.readthedocs.io/en/latest/installation/index.html#installing-with-pip]] or [[from source => http://bitmask.readthedocs.io/en/latest/hacking/index.html#devenv]], or get in contact with us if you want to package Bitmask for some other distribution.