diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/figs/Service.pdf | bin | 0 -> 7303 bytes | |||
-rw-r--r-- | doc/figs/System.pdf | bin | 0 -> 7897 bytes | |||
-rw-r--r-- | doc/gnunet-c-tutorial.pdf | bin | 329226 -> 328988 bytes | |||
-rw-r--r-- | doc/gnunet-c-tutorial.tex | 6 |
4 files changed, 3 insertions, 3 deletions
diff --git a/doc/figs/Service.pdf b/doc/figs/Service.pdf Binary files differnew file mode 100644 index 000000000..e9569cc7a --- /dev/null +++ b/doc/figs/Service.pdf diff --git a/doc/figs/System.pdf b/doc/figs/System.pdf Binary files differnew file mode 100644 index 000000000..70dc6ff2b --- /dev/null +++ b/doc/figs/System.pdf diff --git a/doc/gnunet-c-tutorial.pdf b/doc/gnunet-c-tutorial.pdf Binary files differindex 5636dde4c..5f3b21ca2 100644 --- a/doc/gnunet-c-tutorial.pdf +++ b/doc/gnunet-c-tutorial.pdf diff --git a/doc/gnunet-c-tutorial.tex b/doc/gnunet-c-tutorial.tex index 73c376b0b..714333672 100644 --- a/doc/gnunet-c-tutorial.tex +++ b/doc/gnunet-c-tutorial.tex @@ -262,13 +262,13 @@ your own peer's DHT with respect to the specified KEY: $ gnunet-arm -c ~/peer1.conf -s # start gnunet with all default services $ gnunet-arm -c ~/peer1.conf -i dht # start DHT service $ cd ~/gnunet/src/dht; -$ ./gnunet-dht-monitor -c ~/gnunet1/peer1.conf -k KEY +$ ./gnunet-dht-monitor -c ~/peer1.conf -k KEY \end{lstlisting} Now open a separate terminal and change again to the \lstinline|gnunet/src/dht| directory: \begin{lstlisting} $ cd ~/gnunet/src/dht $ ./gnunet-dht-put -c ~/peer1.conf -k KEY -d VALUE # put VALUE under KEY in the DHT -$ ./gnunet/src/dht/gnunet-dht-get -k KEY # get key KEY from the DHT +$ ./gnunet/src/dht/gnunet-dht-get ~/peer1.conf -k KEY # get key KEY from the DHT $ gnunet-statistics -c ~/peer1.conf # print statistics about current GNUnet state $ gnunet-statistics -c ~/peer1.conf -s dht # print statistics about DHT service \end{lstlisting} @@ -279,7 +279,7 @@ We will now start a second peer on your machine. For the second peer, you will need to manually create a modified configuration file to avoid conflicts with ports and directories. A peers configuration file is by default located in {\tt ~/.gnunet/gnunet.conf}. -This file is typically very short or event empty as only the differences to the +This file is typically very short or even empty as only the differences to the defaults need to be specified. The defaults are located in many files in the {\tt \$GNUNET\_PREFIX/share/gnunet/config.d} directory. |