diff options
Diffstat (limited to 'template/install.html.j2')
-rw-r--r-- | template/install.html.j2 | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/template/install.html.j2 b/template/install.html.j2 index d8db15c3..b5b10f8b 100644 --- a/template/install.html.j2 +++ b/template/install.html.j2 | |||
@@ -77,13 +77,21 @@ If you have any queries about the installation or the usage, please <a href="eng | |||
77 | </div> | 77 | </div> |
78 | <p> | 78 | <p> |
79 | {% trans %} | 79 | {% trans %} |
80 | Alternatively, get the sources from git by entering: | ||
81 | {% endtrans %} | ||
82 | </p> | ||
83 | <code class="block"> | ||
84 | $ git clone https://gnunet.org/git/gnunet.git | ||
85 | </code> | ||
86 | <p> | ||
87 | {% trans %} | ||
80 | To compile GNUnet, execute: | 88 | To compile GNUnet, execute: |
81 | {% endtrans %} | 89 | {% endtrans %} |
82 | </p> | 90 | </p> |
83 | <code class="block"> | 91 | <code class="block"> |
84 | $ export GNUNET_PREFIX=/usr/local/lib # or other directory of your choice<br> | 92 | $ export GNUNET_PREFIX=/usr/local/lib # or other directory of your choice<br> |
85 | # addgroup gnunetdns <br> | 93 | $ sudo addgroup gnunetdns <br> |
86 | # adduser --system --home "/var/lib/gnunet" --group gnunet --shell /bin/sh<br> | 94 | $ sudo adduser --system --home "/var/lib/gnunet" --group gnunet --shell /bin/sh<br> |
87 | $ ./bootstrap # only if you install from git <br> | 95 | $ ./bootstrap # only if you install from git <br> |
88 | $ ./configure --prefix=$GNUNET_PREFIX/ <br> | 96 | $ ./configure --prefix=$GNUNET_PREFIX/ <br> |
89 | $ make | 97 | $ make |
@@ -91,12 +99,12 @@ If you have any queries about the installation or the usage, please <a href="eng | |||
91 | <p> | 99 | <p> |
92 | {% trans %} | 100 | {% trans %} |
93 | You can find more configuration flags in the | 101 | You can find more configuration flags in the |
94 | <a href="https://git.gnunet.org/gnunet.git/tree/README">README</a>. | 102 | <a href="https://git.gnunet.org/gnunet.git/tree/README">README</a>.<br> |
95 | And finally install GNUnet with: | 103 | Install GNUnet with: |
96 | {% endtrans %} | 104 | {% endtrans %} |
97 | </p> | 105 | </p> |
98 | <code class="block"> | 106 | <code class="block"> |
99 | # make install | 107 | $ (sudo) make install # you only need sudo if your GNUNET_PREFIX is not writeable by your user |
100 | </code> | 108 | </code> |
101 | <p> | 109 | <p> |
102 | {% trans %} | 110 | {% trans %} |