aboutsummaryrefslogtreecommitdiff
path: root/template/install.html.j2
diff options
context:
space:
mode:
Diffstat (limited to 'template/install.html.j2')
-rw-r--r--template/install.html.j249
1 files changed, 25 insertions, 24 deletions
diff --git a/template/install.html.j2 b/template/install.html.j2
index bf28eff6..d8db15c3 100644
--- a/template/install.html.j2
+++ b/template/install.html.j2
@@ -26,30 +26,31 @@ If you have any queries about the installation or the usage, please <a href="eng
26 </div> 26 </div>
27 27
28 <h3>Binary packages</h3><br/> 28 <h3>Binary packages</h3><br/>
29 <div class="row container justify-content-center"> 29 <p>
30 <div> 30 {% trans %}
31 {% trans %} 31 We recommend to use binary packages provided by the package manager integrated
32 We recommend to use binary packages provided by the package manager integrated 32 within your Operating System. GNUnet is reportedly available for at least:
33 within your Operating System. GNUnet is reportedly available for at least:
34 33
35 <a href="https://pkgs.alpinelinux.org/package/edge/testing/x86_64/gnunet">Alpine</a> 34 <a href="https://pkgs.alpinelinux.org/package/edge/testing/x86_64/gnunet">Alpine</a>
36 and <a href="https://copr.fedorainfracloud.org/coprs/yosl/gnunet/">Fedora (Copr)</a>. 35 and <a href="https://copr.fedorainfracloud.org/coprs/yosl/gnunet/">Fedora (Copr)</a>.
37 There is also a <a href="https://github.com/Homebrew/homebrew-core/blob/master/Formula/gnunet.rb">Homebrew</a> package available. 36 There is also a <a href="https://github.com/Homebrew/homebrew-core/blob/master/Formula/gnunet.rb">Homebrew</a> package available.
38 37
39 If GNUnet is available for your Operating System and it is missing, 38 If GNUnet is available for your Operating System and it is missing,
40 send us feedback so that we can add it to this list. Furthermore, if 39 send us feedback so that we can add it to this list. Furthermore, if
41 you are interested in packaging GNUnet for your Operating System, 40 you are interested in packaging GNUnet for your Operating System,
42 get in touch with us at gnunet-developers@gnu.org if you require 41 get in touch with us at gnunet-developers@gnu.org if you require
43 help with this job. 42 help with this job.
44 43
45 If you were using an Operating System with the apt package manager, 44 If you were using an Operating System with the Alpine package manager,
46 GNUnet could be installed as simple as: 45 GNUnet could be installed as simple as:
47 {% endtrans %} 46 {% endtrans %}
48 <code> 47 </p>
49 $ apt-get install gnunet 48 <code class="block">
50 </code> 49 $ apk add gnunet
51 </div> 50 </code>
52 </div> 51 <p>
52 Please beware that some distributions may include outdated GNUnet packages!
53 </p>
53 <h3>From source</h3> 54 <h3>From source</h3>
54 <p> 55 <p>
55 {% trans %} 56 {% trans %}
@@ -79,7 +80,7 @@ If you have any queries about the installation or the usage, please <a href="eng
79 To compile GNUnet, execute: 80 To compile GNUnet, execute:
80 {% endtrans %} 81 {% endtrans %}
81 </p> 82 </p>
82 <code> 83 <code class="block">
83 $ export GNUNET_PREFIX=/usr/local/lib # or other directory of your choice<br> 84 $ export GNUNET_PREFIX=/usr/local/lib # or other directory of your choice<br>
84 # addgroup gnunetdns <br> 85 # addgroup gnunetdns <br>
85 # adduser --system --home "/var/lib/gnunet" --group gnunet --shell /bin/sh<br> 86 # adduser --system --home "/var/lib/gnunet" --group gnunet --shell /bin/sh<br>
@@ -94,7 +95,7 @@ If you have any queries about the installation or the usage, please <a href="eng
94 And finally install GNUnet with: 95 And finally install GNUnet with:
95 {% endtrans %} 96 {% endtrans %}
96 </p> 97 </p>
97 <code> 98 <code class="block">
98 # make install 99 # make install
99 </code> 100 </code>
100 <p> 101 <p>
@@ -102,7 +103,7 @@ If you have any queries about the installation or the usage, please <a href="eng
102 You can now start GNUnet by running: 103 You can now start GNUnet by running:
103 {% endtrans %} 104 {% endtrans %}
104 </p> 105 </p>
105 <code> 106 <code class="block">
106 $ gnunet-arm -s 107 $ gnunet-arm -s
107 </code> 108 </code>
108 <p> 109 <p>