HAMcast developers

Changes between Version 2 and Version 3 of documentation/howto/run


Ignore:
Timestamp:
02/13/12 09:30:27 (12 years ago)
Author:
Sebastian Meiling
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • documentation/howto/run

    v2 v3  
    55=== Middleware ===
    66
     7Before you can start any other software, that uses HAMcast API and stack, you must configure and start the HAMcast middleware. To configure the HAMcast middleware see [wiki:dokumentation/howto/configure here].
     8
    79----
    810
    911=== Programs and Tools ===
    1012
     13All software based on the common multicast API and network stack provided by HAMcast need its library (libhamcast) and a running middleware (see above). If you have not installed ''libhamcast'' to standard folders, e.g. {{{/usr/lib/}}}, you must specifiy the environment variable {{{LD_LIBRARY_PATH}}} pointing to libhamcast path.
     14
     15To do so, run:
     16
     17{{{
     18export LD_LIBRARY_PATH=<path-to-libhamcast>
     19./<program>
     20}}}
     21
     22or
     23
     24{{{
     25LD_LIBRARY_PATH=<path-to-libhamcast> ./<program>
     26}}}
     27
     28Also check the README file of the program for further information on requirements and instructions. Most of our tools provide usage and help infos, run {{{./<program> -h}}}.
     29
    1130----