diff options
author | Kali Kaneko <kali@futeisha.org> | 2017-10-04 04:25:59 +0200 |
---|---|---|
committer | Kali Kaneko <kali@futeisha.org> | 2017-10-04 04:26:05 +0200 |
commit | 12ce95f5e445f15e6c9e0876f1b98620d846be56 (patch) | |
tree | 835da3c3bea25698c92791aa8b088caef2e46a6e /pages/linux/debs | |
parent | 05f1595833e54dabb8c151573c7181e15a4cdee3 (diff) |
copying over the docs we revamped in bitmask_help
I had misunderstood the direction of the sync.sh script, so copying here
things manually.
Diffstat (limited to 'pages/linux/debs')
-rw-r--r-- | pages/linux/debs/en.md | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/pages/linux/debs/en.md b/pages/linux/debs/en.md new file mode 100644 index 0000000..b0cac54 --- /dev/null +++ b/pages/linux/debs/en.md @@ -0,0 +1,51 @@ +@title = 'Bitmask debian/ubuntu repositories' +@nav_title = 'Bitmask debian/ubuntu repositories' +@this.toc = false + +# Supported distributions + +We provide packages for **ubuntu** ``zesty`` (17.04), **debian** ``stretch`` (*stable*) and ``buster`` (*testing*). +Try the [[ standalone bundles => /en/install/linux/#standalone-bundles ]] if your distribution is not there. + +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 +``` + +# Release, staging, or master? + +Above, the ``release`` component tracks only the **stable** releases. That is probably what you want to use. + +If you want **alpha** versions and **release candidates**, 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 packages + +If you want to remove bitmask from your system: + +``` +sudo -s +apt remove bitmask 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/ +``` |