]> git.ipfire.org Git - ipfire.org.git/blame - templates/static/features/pakfire.html
Move everything to the root of the repository.
[ipfire.org.git] / templates / static / features / pakfire.html
CommitLineData
54b8df1a
MT
1{% extends "../../base-feature.html" %}
2
3{% block title %}{{ _("Pakfire") }}{% end block %}
4
60024cc8
MT
5{% block bodyA %}
6 <img src="{{ static_url("images/icons/pakfire.png") }}" class="pull-right" alt="{{ _("Pakfire") }}" />
7
8 <div class="page-header">
9 <h1>
10 Pakfire
11 <small>{{ _("The IPFire package management system") }}</small>
12 </h1>
13 </div>
14
15 <div class="row">
16 <div class="span9">
17 {% if lang == "de" %}
18 <p>
19 Vom technischen Standpunkt aus ist IPFire ein schlankes, gehärtetes
20 Firewall-System, welches den Paketmanager Pakfire mitbringt.
21 Die primäre Aufgabe von Pakfire ist es, Systemupdates mit nur einem Klick
22 einspielen zu können.
23 Somit ist es ganz leicht <a href="/features/updates">Sicherheitslücken
24 zu schließen und Bugfixes sowie neue Funktionen zu installieren</a>.
25 Dies macht IPFIre sicherer und schneller - oder einfach: besser.
26 </p>
27 <p>
28 Eine weitere Aufgabe ist es, zusätzliche Addons zu installieren, welche die
29 Funktionen des Systems erweitern.
30
31 Einige beliebte sind unter anderen:
32
33 <ul>
34 <li>Datei- und Druckdienste wie <em>samba</em> und <em>vsftpd</em></li>
35 <li>Kommunikationslösungen wie <em>Asterisk</em></li>
36 <li>
37 Verschiedene Kommandozeilenhelfer wie
38 <em>tcpdump</em>, <em>nmap</em>, <em>traceroute</em>
39 und viele mehr.
40 </li>
41 </ul>
42 </p>
43
44 <h2>Pakfire als Buildsystem</h2>
45 <p>
46 Das kommende Major-Release von IPFire wird eine neue
47 Generation des Pakfire Paketmanagementsystems mitbringen.
48 Diese ist schneller, sicherer und einfacher zu bedienen.
49 Dazu kommen unzählige neue Funktionen.
50 </p>
51 <p>
52 Eine der neuen Funktionen ist, dass <em>pakfire</em>
53 nun auch als Buildsystem fungiert.
54 Ein auf die IPFire-Distribution angepasstes Buildsystem
55 hat die Produktivität der Entwickler immens gesteigert.
56 Neue Pakete zu bauen ist nun einfacher und nimmt weniger
57 Zeit in Anspruch.
58 </p>
59 <p>
60 Qualitätssicherung ist jetzt eine Aufgabe für alle.
61 Mehr dazu auf <a href="http://pakfire.ipfire.org/">pakfire.ipfire.org</a>.
62 </p>
63 {% else %}
64 <p>
65 From a technical point of view, IPFire is a minimalistic, hardened firewall system
66 which comes with an integrated package manager called Pakfire.
67 The primary task of Pakfire is to update the system with only a single click.
68 It is very easy to install <a href="/features/updates">security patches,
69 bugfixes and feature enhancements</a>, which make IPFire safer and faster
70 - or simply: better.
71 </p>
72 <p>
73 Another task of Pakfire is to install additional software that adds new
74 functionality to the IPFire system.
75
76 Some useful of them are:
77
78 <ul>
79 <li>File sharing services such as Samba and vsftpd</li>
80 <li>Communications server using Asterisk</li>
81 <li>
82 Various command-line tools as <em>tcpdump</em>,
83 <em>nmap</em>, <em>traceroute</em> and many more.
84 </li>
85 </ul>
86 </p>
87
88 <h2>Pakfire as a build system</h2>
89 <p>
90 The next major release of IPFire will also ship a new generation
91 of the Pakfire packagement system.
92 This new generation has been made faster, more secure, more
93 easy to handle and adds a whole bunch of new features.
94 </p>
95 <p>
96 One of this features is that <em>pakfire</em> is now the
97 buildsystem as well. Having a customized build system for
98 the needs of IPFire and the IPFire developers improved
99 the development process very much. Building new packages
100 became a lot more easy and less time-consuming.
101 </p>
102 <p>
103 Quality assurance became more social right now. Check it
104 out at <a href="http://pakfire.ipfire.org/">pakfire.ipfire.org</a>.
105 </p>
106 {% end %}
107 </div>
108 </div>
109
110 <hr>
111
112 <div class="well">
113 <h3>{{ _("Further reading") }}</h3>
114 <ul>
115 <li>
116 <a href="http://wiki.ipfire.org/{{ lang }}/configuration/ipfire/pakfire/start">
117 {{ _("How to install a package?") }}
118 </a>
119 </li>
120 <li>
121 <a href="http://wiki.ipfire.org/{{ lang }}/addons/start">
122 {{ _("List of add-ons") }}
123 </a>
124 </li>
125 <li>
126 <a href="http://pakfire.ipfire.org/">
127 {{ _("Pakfire Build System") }}
128 </a>
129 </li>
54b8df1a 130 </ul>
54b8df1a 131 </div>
60024cc8
MT
132
133 <ul class="thumbnails">
134 <li class="span3">
135 <a class="thumbnail" href="{{ static_url("images/screenshots/en/pakfire/pakfire-overview-1.png") }}">
136 <img src="{{ static_url("images/screenshots/en/pakfire/pakfire-overview-1_thumb.png") }}" alt="{{ _("Screenshot") }}">
137 </a>
138 </li>
139 <li class="span3">
140 <a class="thumbnail" href="{{ static_url("images/screenshots/en/pakfire/addon-services-1.png") }}">
141 <img src="{{ static_url("images/screenshots/en/pakfire/addon-services-1_thumb.png") }}" alt="{{ _("Screenshot") }}">
142 </a>
143 </li>
144 </ul>
54b8df1a 145{% end block %}