]> git.sur5r.net Git - i3/i3.github.io/blob - _docs/repositories
Update ubuntu repository instructions as well
[i3/i3.github.io] / _docs / repositories
1 Debian and Ubuntu repositories
2 ==============================
3 Michael Stapelberg <michael@i3wm.org>
4 September 2016
5
6 == When should you use our repositories?
7
8 In general, you should use the repositories of your distribution. Adding
9 third-party repositories to your +/etc/sources.list+ has security implications
10 and makes your +apt-get update+ take longer.
11
12 If you are using Debian stable::
13     The latest version of i3 will be in Debian testing quite soon. The version
14     in Debian stable can be old, however (we cannot update it after stable has
15     been released). The best way is to add Debian testing and tell +apt+ to
16     prefer Debian stable. You should *not* use our repository.
17     Alternatively, you can also use
18     link:http://backports.debian.org/[stable-backports (e.g. wheezy-backports for
19     Debian wheezy)].
20 If you are using Ubuntu::
21     Only a handful of packages are maintained by Ubuntu developers. The rest is
22     synchronized periodically from Debian, every 6 months. Therefore, Ubuntu
23     often includes old versions of i3. You should use our Ubuntu repository.
24 If you want the latest i3 development version::
25     If you are using Debian (Debian-derived systems might work, too) or Ubuntu
26     and want the latest development version of i3, you should use our Debian
27     repository.
28
29 == Ubuntu repository
30
31 === Stable releases
32
33 This Ubuntu repository is provided by sur5r and contains the latest stable
34 release of i3. To use it, run the following commands:
35
36 ---------------------------------------------------------------------------------
37 # echo "deb http://debian.sur5r.net/i3/ $(lsb_release -c -s) universe" >> /etc/apt/sources.list
38 # apt-get update
39 # apt-get --allow-unauthenticated install sur5r-keyring
40 # apt-get update
41 # apt-get install i3
42 ---------------------------------------------------------------------------------
43
44 All Ubuntu versions which are currently supported by Ubuntu itself are also supported by
45 this repository. See link:https://wiki.ubuntu.com/Releases[Ubuntu releases] for details.
46
47 Packages for unsupported Ubuntu versions might exist but may disappear any time.
48
49 === Development releases
50
51 This Ubuntu repository contains packages which are automatically built a few
52 minutes after every commit. To use it, run the following commands:
53
54 ---------------------------------------------------------------------------------
55 $ /usr/lib/apt/apt-helper download-file http://dl.bintray.com/i3/i3-autobuild-ubuntu/pool/main/i/i3-autobuild-keyring/i3-autobuild-keyring_2016.10.01_all.deb keyring.deb SHA256:460e8c7f67a6ae7c3996cc8a5915548fe2fee9637b1653353ec62b954978d844
56 # apt install ./keyring.deb
57 # echo 'deb http://dl.bintray.com/i3/i3-autobuild-ubuntu xenial main' > /etc/apt/sources.list.d/i3-autobuild.list
58 # apt update
59 # apt install i3
60 ---------------------------------------------------------------------------------
61
62 Development versions are only available for the latest version of Ubuntu, which
63 is xenial at the moment.
64
65 == Debian repository
66
67 Our Debian repository contains packages which are automatically built a few
68 minutes after every commit. To use it, run the following commands:
69
70 ---------------------------------------------------------------------------------
71 $ /usr/lib/apt/apt-helper download-file http://dl.bintray.com/i3/i3-autobuild/pool/main/i/i3-autobuild-keyring/i3-autobuild-keyring_2016.10.01_all.deb keyring.deb SHA256:460e8c7f67a6ae7c3996cc8a5915548fe2fee9637b1653353ec62b954978d844
72 # apt install ./keyring.deb
73 # echo 'deb http://dl.bintray.com/i3/i3-autobuild sid main' > /etc/apt/sources.list.d/i3-autobuild.list
74 # apt update
75 # apt install i3
76 ---------------------------------------------------------------------------------
77
78 == Preferring the autobuilder version of i3
79
80 On installations where you have multiple sources (stable and testing, or
81 testing and unstable for example), +apt-get install i3+ might not get you the
82 autobuilder version.
83
84 To ensure that the autobuilt i3 packages will be preferred to the packages of
85 your distribution, create the file
86 +/etc/apt/preferences.d/00-i3-autobuild.pref+ with the following contents:
87
88 ----------------------------
89 Package: i3*
90 Pin: origin "dl.bintray.com"
91 Pin-Priority: 1001
92 ----------------------------
93
94 Then, run +apt-get update+ and install +i3+.