gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r35420 - gnunet/doc


From: gnunet
Subject: [GNUnet-SVN] r35420 - gnunet/doc
Date: Mon, 23 Mar 2015 13:07:53 +0100

Author: grothoff
Date: 2015-03-23 13:07:52 +0100 (Mon, 23 Mar 2015)
New Revision: 35420

Modified:
   gnunet/doc/gnunet-c-tutorial.tex
Log:
-update doc

Modified: gnunet/doc/gnunet-c-tutorial.tex
===================================================================
--- gnunet/doc/gnunet-c-tutorial.tex    2015-03-21 03:38:29 UTC (rev 35419)
+++ gnunet/doc/gnunet-c-tutorial.tex    2015-03-23 12:07:52 UTC (rev 35420)
@@ -270,25 +270,29 @@
 \subsection{Start a peer}
 Each GNUnet instance (called peer) has an identity (\textit{peer ID}) based on 
a
 cryptographic public private key pair. The peer ID is the printable hash of the
-public key. So before starting the peer, you may want to just generate the 
peer's private
-key using the command
+public key.
+
+GNUnet services are controlled by a master service the so called 
\textit{Automatic Restart Manager} (ARM).
+ARM starts, stops and even restarts services automatically or on demand when a 
client connects.
+You interact with the ARM service using the \lstinline|gnunet-arm| tool.
+GNUnet can then be started with \lstinline|gnunet-arm -s| and stopped with
+\lstinline|gnunet-arm -e|.  An additional service not automatically started
+can be started using \lstinline|gnunet-arm -i <service name>| and stopped
+using \lstinline|gnunet-arm -k <servicename>|.
+
+Once you have started your peer, you can use many other GNUnet commands
+to interact with it.  For example, you can run:
 \lstset{language=bash}
 \begin{lstlisting}
-$ gnunet-peerinfo -c ~/peer1.conf -s
+$ gnunet-peerinfo -s
 \end{lstlisting}
+to obtain the public key of your peer.
 You should see an output containing the peer ID similar to:
 \lstset{language=bash}
 \begin{lstlisting}
 I am peer `0PA02UVRKQTS2C .. JL5Q78F6H0B1ACPV1CJI59MEQUMQCC5G'.
 \end{lstlisting}
 
-GNUnet services are controlled by a master service the so called 
\textit{Automatic Restart Manager} (ARM).
-ARM starts, stops and even restarts services automatically or on demand when a 
client connects.
-You interact with the ARM service using the \lstinline|gnunet-arm| tool.
-GNUnet can then be started with \lstinline|gnunet-arm -s| and stopped with
-\lstinline|gnunet-arm -e|.  An additional service not automatically started
-can be started using \lstinline|gnunet-arm -i <service name>| and stopped
-using \lstinline|gnunet-arm -k <servicename>|.
 
 \subsection{Monitor a peer}
 In this section, we will monitor the behaviour of our peer's DHT service with 
respect to a




reply via email to

[Prev in Thread] Current Thread [Next in Thread]