bogus
[oweals/gnunet.git] / README
1                        Welcome to GNUnet
2
3
4 What is GNUnet?
5 ===============
6
7 GNUnet is peer-to-peer framework focusing on security.  The first and
8 primary application for GNUnet is anonymous file-sharing.  GNUnet is
9 currently developed by a worldwide group of independent free software
10 developers.  GNUnet is a GNU package (http://www.gnu.org/).
11
12 This is an ALPHA release.  There are known and significant bugs as 
13 well as many missing features in this release.  
14
15 Additional documentation about GNUnet can be found at
16 https://gnunet.org/.
17
18
19 Dependencies:
20 =============
21
22 Please note that for many of its dependencies GNUnet requires very
23 recent versions of the libraries which are often NOT to be found in
24 stable distributions in 2010.  While using older packages may in some
25 cases on some operating systems may seem to work in some limited
26 fashion, we are in many cases aware of serious problems with older
27 packages.  Hence please make sure to use  the versions listed below.
28
29 These are the direct dependencies for running GNUnet:
30
31 - libextractor  >= 0.6.1
32 - libmicrohttpd >= 0.9.2
33 - libgcrypt     >= 1.2
34 - libcurl       >= 7.21.0
35 - libltdl       >= 2.2 (part of GNU libtool)
36 - sqlite        >= 3.0 (alternative to MySQL)
37 - mysql         >= 5.1 (alternative to sqLite)
38 - postgres      >= ??? (not yet supported)
39
40 Recommended autotools for compiling the SVN version are:
41 - autoconf >= 2.59
42 - automake >= 1.11.1
43 - libtool  >= 2.2 
44
45
46 How to install?
47 ===============
48
49 The fastest way is to use a binary package if it is available for your
50 system.  For a more detailed description, read the installation
51 instructions on the webpage at https://gnunet.org/installation.
52
53 Note that some functions of GNUnet require "root" access.  GNUnet will
54 install (tiny) SUID binaries for those functions is you run "make
55 install" as root.  If you do not, GNUnet will still work, but some
56 functionality will not be available (including certain forms of NAT
57 traversal).
58
59 GNUnet requires the GNU MP library (http://www.gnu.org/software/gmp/)
60 and libgcrypt (http://www.gnupg.org/).  You can specify the path to
61 libgcrypt by passing "--with-gcrypt=PATH" to configure.  You will also
62 need either sqlite (http://www.sqlite.org/) or MySQL
63 (http://www.mysql.org/).
64
65 If you install from source, you need to install GNU libextractor first
66 (download from http://www.gnu.org/software/libextractor/).  We also
67 recommend installing GNU libmicrohttpd (download from
68 http://www.gnu.org/software/libmicrohttpd/).  Then you can start the
69 actual GNUnet compilation process with:
70
71 $ ./configure --prefix=$HOME --with-extractor=$HOME
72 $ make
73 # make install
74 # sudo -u gnunet mkdir ~/.gnunet/ 
75 # sudo -u gnunet touch ~/.gnunet/gnunet.conf
76 # sudo -u gnunet gnunet-arm -s
77
78 This will compile and install GNUnet to $HOME/bin/, $HOME/lib/ and
79 $HOME/share/ and start the system with the default configuration.  It
80 is recommended that you add a user "gnunet" to run "gnunet-arm".  You
81 can then still run the end-user applications as another user.  If you
82 create a user "gnunet", it is recommended that you edit the
83 configuration file slightly so that data can be stored in
84 "/var/lib/gnunet"; you may also want to use "/etc/gnunet.conf" for the
85 location of the configuration file in this case.
86
87 Note that additional, per-user configuration files
88 (~/.gnunet/gnunet.conf) need to be created by each user (for example,
89 by running gnunet-setup). For more general information about the GNU
90 build process read the INSTALL file.
91
92 If you are compiling the code from subversion, you have to run
93 ". bootstrap" before ./configure.  If you receive an error during the
94 running of ". bootstrap" that looks like "macro `AM_PATH_GTK' not
95 found in library", you may need to run aclocal by hand with the -I
96 option, pointing to your aclocal m4 macros, i.e.
97
98 $ aclocal -I /usr/local/share/aclocal
99
100
101 Configuration
102 =============
103
104 GNUnet uses two types of configuration files, one that specifies the
105 system-wide defaults (typically located in /usr/share/gnunet/defaults
106 .conf) and a second one that overrides default values with
107 user-specific preferences.  The user-specific configuration file
108 should be located in "~/.gnunet/gnunet.conf" or its location can be
109 specified by giving the "-c" option to the respective GNUnet
110 application.
111
112 The defaults that are shipped with the installation are usually ok,
113 you may want to adjust the limitations (space consumption, bandwidth,
114 etc.) though.  The configuration files are human-readable.  Note that
115 you MUST create "~/.gnunet/gnunet.conf" explicitly before starting
116 GNUnet.  You can either copy "defaults.conf" or simply create an empty
117 file.
118
119
120 Usage
121 =====
122
123 First, you must obtain an initial list of GNUnet hosts.  Knowing a
124 single peer is sufficient since after that GNUnet propagates
125 information about other peers.  Note that the default "gnunet.conf"
126 contains URLs from where GNUnet downloads an initial hostlist
127 whenever it is started.  If you want to create an alternative URL for
128 others to use, the file can be generated on any machine running
129 GNUnet by periodically executing
130
131 $ cat $SERVICEHOME/data/hosts/* > the_file
132
133 and offering 'the_file' via your web server.  Alternatively, you can
134 run the build-in web server by adding '-p' to the OPTIONS value
135 in the "hostlist" section of gnunet.conf and opening the respective
136 HTTPPORT to the public.
137
138 If the solution with the hostlist URL is not feasible for your
139 situation, you can also add hosts manually.  Simply copy the hostkeys
140 to "$SERVICEHOME/data/hosts/" (where $SERVICEHOME is the directory
141 specified in the gnunet.conf configuration file).
142
143 Now start the local node using "gnunet-arm -s".  GNUnet should run 24/7 if
144 you want to maximize your anonymity.  
145
146 The GTK user interface is shipped separately.  After downloading and
147 installing gnunet-gtk, you can invoke the GUI with:
148
149 $ gnunet-gtk
150
151 // FIXME: gnunet-qt is not yet supported in 0.9.x
152 For Qt/KDE users, there is also a QT user interface (also shipped 
153 separately).  If you install gnunet-qt, you can invoke the GUI with:
154
155 $ gnunet-qt
156
157 If you want to use the shell (part of this distribution), use
158
159 $ gnunet-search KEYWORD
160
161 This will display a list of results to the console. Then use
162
163 $ gnunet-download -o FILENAME GNUNET_URI
164
165 to retrieve a file.  The GNUNET_URI is printed by gnunet-search
166 together with a description.  To publish files on GNUnet, use the
167 "gnunet-publish" command.
168
169 // FIXME: auto-share is not yet supported in 0.9.x
170 In order to share files, the easiest way is to create a directory
171 with the files (and directories) that you want to share and run
172
173 $ nohup gnunet-auto-share NAME-OF-THE-DIRECTORY &
174
175 For further documentation, see our webpage.
176
177
178 Hacking GNUnet
179 ==============
180
181 Contributions are welcome, please submit bugs to
182 https://gnunet.org/bugs/.  Please make sure to run contrib/report.sh
183 and include the output with your bug reports.  More about how to
184 report bugs can be found in the GNUnet FAQ on the webpage.  Submit
185 patches via E-Mail to gnunet-developers@gnu.org.
186
187 In order to run the unit tests with "make check", you need to
188 set an environment variable ("GNUNET_PREFIX") to the directory
189 where GNUnet is installed (usually, GNUnet will use OS specific
190 tricks in order to try to figure out the PREFIX, but since the
191 testcase binaries are not installed, that trick does not work
192 for them).  Also, before running any testcases, you must
193 complete the installation first.  Quick summary:
194
195 $ ./configure --prefix=$SOMEWHERE
196 $ make
197 $ make install
198 $ export GNUNET_PREFIX=$SOMEWHERE
199 $ make check
200
201 If any testcases fail to pass on your system, run "contrib/report.sh"
202 and report the output together with information about the failing
203 testcase to the Mantis bugtracking system at
204 https://gnunet.org/bugs/.
205
206
207 Running http on port 80 and https on port 443
208 =============================================
209
210 In order to hide GNUnet's HTTP/HTTPS traffic perfectly, you might
211 consider running GNUnet's HTTP/HTTPS transport on port 80/443.
212 However, we do not recommend running GNUnet as root.  Instead, forward
213 port 80 to say 8080 with this command (as root, in your startup
214 scripts):
215
216 # iptables -t nat -A PREROUTING -p tcp -m tcp --dport 80 -j REDIRECT --to-ports 8080
217
218 or for HTTPS
219
220 # iptables -t nat -A PREROUTING -p tcp -m tcp --dport 443 -j REDIRECT --to-ports 4433
221
222 Then set in the HTTP section of gnunet.conf the "ADVERTISED-PORT" to
223 "80" and "PORT" to 8080 and similarly in the HTTPS section the
224 "ADVERTISED-PORT" to "443" and "PORT" to 4433.
225
226 You can do the same trick for the TCP and UDP transports if you want
227 to map them to a priviledged port (from the point of view of the
228 network).  However, we are not aware of this providing any advantages
229 at this point.
230
231
232
233 Running the SMTP transport
234 ==========================
235
236 // NOTE: SMTP is not currently available in this version of GNUnet
237 Running GNUnet over SMTP (e-mail) is a bit more involved.  Note that
238 you do not need to run all transports (only running the NAT transport
239 is the only thing that will not work).  If you really want to do
240 P2P over SMTP, read the instructions at http://gnunet.org/smtp
241
242
243 Stay tuned
244 ==========
245
246 * https://gnunet.org/
247 * https://gnunet.org/bugs/
248 * https://gnunet.org/svn/
249 * http://www.gnu.org/software/gnunet/
250 * http://mail.gnu.org/mailman/listinfo/gnunet-developers
251 * http://mail.gnu.org/mailman/listinfo/help-gnunet
252 * http://mail.gnu.org/mailman/listinfo/info-gnunet
253 * http://mail.gnu.org/mailman/listinfo/gnunet-svn