]> git.sur5r.net Git - i3/i3.github.io/blob - _docs/repositories
88103b05b601499030ef9c7bb78301672b8a87b9
[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 # echo 'deb http://dl.bintray.com/i3/i3-autobuild-ubuntu xenial main' > /etc/apt/sources.list.d/i3-autobuild.list
56 # apt-get update
57 # apt-get --allow-unauthenticated install i3-autobuild-keyring
58 # rm -f /var/lib/apt/lists/dl.bintray.com_i3_i3-autobuild-ubuntu_*
59 # apt-get update
60 # apt-get install i3
61 ---------------------------------------------------------------------------------
62
63 Development versions are only available for the latest version of Ubuntu, which
64 is xenial at the moment.
65
66 == Debian repository
67
68 Our Debian repository contains packages which are automatically built a few
69 minutes after every commit. To use it, run the following commands:
70
71 ---------------------------------------------------------------------------------
72 $ /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
73 # apt install ./keyring.deb
74 # echo 'deb http://dl.bintray.com/i3/i3-autobuild sid main' > /etc/apt/sources.list.d/i3-autobuild.list
75 # apt update
76 # apt install i3
77 ---------------------------------------------------------------------------------
78
79 == Preferring the autobuilder version of i3
80
81 On installations where you have multiple sources (stable and testing, or
82 testing and unstable for example), +apt-get install i3+ might not get you the
83 autobuilder version.
84
85 To ensure that the autobuilt i3 packages will be preferred to the packages of
86 your distribution, create the file
87 +/etc/apt/preferences.d/00-i3-autobuild.pref+ with the following contents:
88
89 ----------------------------
90 Package: i3*
91 Pin: origin "dl.bintray.com"
92 Pin-Priority: 1001
93 ----------------------------
94
95 Then, run +apt-get update+ and install +i3+.