blob: f4b4e7a6502bf13ec40e5f2a38a962c2bedf4d07 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{% extends "common/base.j2" %}
{% block body_content %}
<article class="d-flex flex-column p-5 bd-highlight">
<header>
<h1>{{ _("Install-Tutorials") }}</h1>
</header>
<p>
{% trans %}
This page holds various simplified step-by-step tutorials for GNUnet. <br>
Some of them are not complete, but we find them useful regardless of their state. <br>
Find much more detailled documentation of the installation options in the <a href="https://docs.gnunet.org/#toc-Installing-GNUnet-1">according section</a> of the <a href="https://docs.gnunet.org/">handbook</a>.
{% endtrans %}
</p>
<p>
{% trans %}
Please note that the installation process will get much easier once we have proper packages again.
{% endtrans %}
</p>
<p>
{% trans %}
GNUnet installation instructions:
<ul>
<li><a href="tutorial-ubuntu1804.html">Ubuntu 18.04</a></li>
<li><a href="tutorial-archpi.html">Arch-Pi</a></li>
<li><a href="tutorial-debian9.html">Debian 9</a></li>
<li><a href="tutorial-macos.html">macOS</a></li>
<li><a href="tutorial-netbsd.html">NetBSD</a></li>
</ul>
{% endtrans %}
</p>
<p>
{% trans %}
<a href="https://tutorial.gnunet.org/">C Coding Tutorial for GNUnet</a>
{% endtrans %}
</p>
<p>
{% trans %}
Once the installation is done, please head over to the <a href="https://gnunet.org/en/use">"How to use GNUnet"-page</a> to get a brief intro on what can be done with your installation. <br>
As usual get much more detailled instructions and information in the <a href="https://docs.gnunet.org/#toc-Using-GNUnet-1">according section</a> of the <a href="https://docs.gnunet.org/">handbook</a>.
If you have any queries about the installation or the usage, please <a href="https://gnunet.org/en/engage.html">get in touch!</a>
{% endtrans %}
</p>
</article>
{% endblock body_content %}
|