blob: 9911c97489b48891db6f8c23492567b7821ece34 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
{% extends "common/base.j2" %}
{% block body_content %}
<article class="container">
<header>
<h1>{{ _("Install") }}</h1>
</header>
<div class="row container justify-content-center">
<div class="col-md">
{% trans %}
<p>The following GNUnet installation instructions help you building from source for your distribution.</p>
<p><i>Please note that the installation process will get much easier once we have proper packages again (planned for winter 2019).</i></p>
<p>You have already installed GNUnet and want to use it?
<a href="https://gnunet.org/en/use">Check this out!</a> </p>
{% endtrans %}
</div>
<div class="col-md">
{% trans %}
<p>Please be aware that this project is still in an early alpha
stage when it comes to running software – its not an easy task
to rewrite the whole Internet! We are happy to get your
<a href="engage.html">helping hand</a> anytime!</p>
<p>Further information is available in our <a href="https://docs.gnunet.org/#toc-Using-GNUnet-1">handbook</a>.</p>
<p>If you have any queries about the installation or the usage, please <a href="engage.html">get in touch!</a></p>
{% endtrans %}
</div>
</div>
<div class="row container justify-content-center text-center">
<div class="col-md">
<p><a href="install-on-ubuntu1804.html"><img src="{{ url('static/images/ubuntu-logo32.png') }}" class="distro-logo"></a></p>
<h3>Ubuntu 18.04</h3>
</div>
<div class="col-md">
<p><a href="install-on-debian9.html"><img src="{{ url('static/images/debian-logo.svg') }}" class="distro-logo"></a></p>
<h3>Debian 9</h3>
</div>
<div class="col-md">
<!-- Not the officially distributed file, but it's the same logo, in svg. Use this. -->
<p><a href="install-on-netbsd.html"><img src="{{ url('static/images/NetBSD_Logo.svg') }}" class="distro-logo"></a></p>
<h3>NetBSD</h3>
</div>
</div>
<div class="row container justify-content-center text-center">
<div class="col-md">
<p><a href="install-on-macos.html"><img src="{{ url('static/images/apple-logo.svg') }}" class="distro-logo"></a></p>
<h3>macOS</h3>
</div>
<div class="col-md">
<p><a href="install-on-archpi.html"><img src="{{ url('static/images/archlinux-logo.svg') }}" class="distro-logo" style="width:300px;height:auto"></a></p>
<h3>Arch-Pi</h3>
</div>
<div class="col-md">
</div>
</div>
</article>
{% endblock body_content %}
|