summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2020-05-15 11:28:23 +0200
committerMartin Schanzenbach <mschanzenbach@posteo.de>2020-05-15 11:28:23 +0200
commit0a0dd2431d29bf91bbb338e6d8d6738632c49f8e (patch)
tree2e70e947ac351ae05b3b199af93e116895d928d4
parent091ff7864c218c1756b7d70b7d10ca68b5679528 (diff)
improve setup phase
-rw-r--r--template/install.html.j213
1 files changed, 11 insertions, 2 deletions
diff --git a/template/install.html.j2 b/template/install.html.j2
index b1494ca4..598aaa6a 100644
--- a/template/install.html.j2
+++ b/template/install.html.j2
@@ -85,13 +85,22 @@ If you have any queries about the installation or the usage, please <a href="eng
</code>
<p>
{% trans %}
+ Before building GNUnet, make sure that you setup the required groups and
+ add your user to the group <code>gnunet</code>:
+ {% endtrans %}
+ </p>
+ <code class="block">
+ # addgroup gnunetdns <br>
+ # adduser --system --home "/var/lib/gnunet" --group gnunet --shell /bin/sh<br>
+ # usermod -a -G gnunet &lt;username&gt;
+ </code>
+ <p>
+ {% trans %}
To compile GNUnet, execute:
{% endtrans %}
</p>
<code class="block">
$ export GNUNET_PREFIX=/usr/local/lib # or other directory of your choice<br>
- $ sudo addgroup gnunetdns <br>
- $ sudo adduser --system --home "/var/lib/gnunet" --group gnunet --shell /bin/sh<br>
$ ./bootstrap # only if you install from git <br>
$ ./configure --prefix=$GNUNET_PREFIX/.. <br>
$ make