aboutsummaryrefslogtreecommitdiff
path: root/doc/gnunet-c-tutorial.tex
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-06-05 10:17:04 +0000
committerChristian Grothoff <christian@grothoff.org>2014-06-05 10:17:04 +0000
commited152ee424088c09368b865afaa1117f0a207963 (patch)
tree40ca2753d01d5812334ec2999082c37d5a37e39e /doc/gnunet-c-tutorial.tex
parentf8a8dad6b6ff2d1dd28098372f203264b2caa060 (diff)
downloadgnunet-ed152ee424088c09368b865afaa1117f0a207963.tar.gz
gnunet-ed152ee424088c09368b865afaa1117f0a207963.zip
-remove mention of GNUNET_PREFIX, should no longer be needed
Diffstat (limited to 'doc/gnunet-c-tutorial.tex')
-rw-r--r--doc/gnunet-c-tutorial.tex8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/gnunet-c-tutorial.tex b/doc/gnunet-c-tutorial.tex
index fd9b907cb..7c0680d73 100644
--- a/doc/gnunet-c-tutorial.tex
+++ b/doc/gnunet-c-tutorial.tex
@@ -204,7 +204,7 @@ Mar 12 16:57:56-642573 test_program-19449 ERROR Assertion failed at resolver_api
204/bin/bash: line 5: 19449 Aborted (core dumped) ${dir}$tst 204/bin/bash: line 5: 19449 Aborted (core dumped) ${dir}$tst
205FAIL: test_program 205FAIL: test_program
206\end{lstlisting} 206\end{lstlisting}
207double check your {\tt GNUNET\_PREFIX} environmental variable and double check the steps performed in ~\ref{sub:install} 207double check the steps performed in ~\ref{sub:install}
208 208
209\section{Background: GNUnet Architecture} 209\section{Background: GNUnet Architecture}
210GNUnet is organized in layers and services. Each service is composed of a 210GNUnet is organized in layers and services. Each service is composed of a
@@ -247,7 +247,7 @@ the programmer.
247\section{First Steps with GNUnet} 247\section{First Steps with GNUnet}
248 248
249\subsection{Configure your peer} 249\subsection{Configure your peer}
250First of all we need to configure your peer. Each peer is started with a configuration containing settings for GNUnet itself and it's services. This configuration is based on the default configuration shipped with GNUnet and can be modified. The default configuration is located in the {\tt \$GNUNET\_PREFIX/share/gnunet/config.d} directory. When starting a peer, you can specify a customized configuration using the the {\tt$-c$} command line switch when starting the ARM service and all other services. When using a modified configuration the default values are loaded and only values specified in the configuration file will replace the default values. 250First of all we need to configure your peer. Each peer is started with a configuration containing settings for GNUnet itself and it's services. This configuration is based on the default configuration shipped with GNUnet and can be modified. The default configuration is located in the {\tt \$PREFIX/share/gnunet/config.d} directory. When starting a peer, you can specify a customized configuration using the the {\tt$-c$} command line switch when starting the ARM service and all other services. When using a modified configuration the default values are loaded and only values specified in the configuration file will replace the default values.
251 251
252Since we want to start additional peers later, we need 252Since we want to start additional peers later, we need
253some modifications from the default configuration. We need to create a separate service home and a file containing our modifications for this peer: 253some modifications from the default configuration. We need to create a separate service home and a file containing our modifications for this peer:
@@ -321,10 +321,10 @@ configuration file to avoid conflicts with ports and directories.
321A peers configuration file is by default located in {\tt ~/.gnunet/gnunet.conf}. 321A peers configuration file is by default located in {\tt ~/.gnunet/gnunet.conf}.
322This file is typically very short or even empty as only the differences to the 322This file is typically very short or even empty as only the differences to the
323defaults need to be specified. The defaults are located in 323defaults need to be specified. The defaults are located in
324many files in the {\tt \$GNUNET\_PREFIX/share/gnunet/config.d} directory. 324many files in the {\tt \$PREFIX/share/gnunet/config.d} directory.
325 325
326To configure the second peer, use the files {\tt 326To configure the second peer, use the files {\tt
327 \$GNUNET\_PREFIX/share/gnunet/config.d} as a template for your main 327 \$PREFIX/share/gnunet/config.d} as a template for your main
328configuration file: 328configuration file:
329% 329%
330\lstset{language=bash} 330\lstset{language=bash}