Changes between Version 29 and Version 30 of BaseInstall
- Timestamp:
- Feb 4, 2010, 1:53:59 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BaseInstall
v29 v30 48 48 == Running the !PingPong Sample == 49 49 50 The !PingPong binary {{{pingpong}}} is installed in {{{build/bin}}}. It has one parameter, a configuration file. You can find sample configuration files in the {{{etc/pingpongconfig}}} folder. Three configuration files are provided. You can start the initiator as follows:50 The !PingPong binary {{{pingpong}}} is installed in {{{build/bin}}}. It has one parameter, a configuration file. You can find sample configuration files in the {{{etc/pingpongconfig}}} folder. If no configuration file is given, the node will randomly select its NodeID but will not find other nodes. This is because bootstrap modules are selected in the configuration file. 51 51 52 52 {{{ 53 > ./pingpong ../../etc/pingpong config/settings_initiator.cnf53 > ./pingpong ../../etc/pingpong/settings_node1.cnf 54 54 }}} 55 55 56 If this will fail to find the {{{libariba}}} you may have to set the {{{LD_LIBRARY_PATH}}} correctly :56 If this will fail to find the {{{libariba}}} you may have to set the {{{LD_LIBRARY_PATH}}} correctly in your current terminal, or better add it to your {{{.bashrc}}} 57 57 {{{ 58 58 > export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/user/ariba/build/lib … … 74 74 }}} 75 75 and then build using bjam as described in {{{http://www.boost.org/doc/libs/1_38_0/more/getting_started/unix-variants.html}}}. 76 76 77 77 78