Changes between Version 48 and Version 49 of Documentation/CGettingStarted


Ignore:
Timestamp:
Jul 12, 2011, 9:32:52 PM (13 years ago)
Author:
nilanjan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/CGettingStarted

    v48 v49  
    7272   [[Image(newhowto4.jpg)]]
    7373
    74  * To run a tutorial experiment that involves one UDP traffic sender and one receiver:
     74 * Before running the tutorial experiment ssh into each node (ie. node1-1 & node 1-2) and load the driver modules.
    7575   {{{
    76    omf-5.2 exec --tutorial -- --tutorialName tutorial-1a
     76   username@console.sb2:~$ ssh root@node1-1
     77   }}}
     78   From the node load the driver module:
     79   {{{
     80   root@node1-1:~# modprobe ath_pci
     81   }}}
     82   Verify that the module has been loaded into the kernel
     83   {{{
     84   root@node1-1:~# lsmod
     85   }}}
     86   
     87   [[Image(newhowto_lsmod.jpg)]]
     88
     89   Now ssh into ''node1-2'' and do the same.
     90
     91 * To run a tutorial experiment that involves one UDP traffic sender and one receiver. Make sure you're back at the console.
     92   {{{
     93   username@console.sb2:~$ omf-5.2 exec --tutorial -- --tutorialName tutorial-1a
    7794   }}}
    7895   Once this experiment is started, the output should look similar to:
     
    8097   [[Image(newhowto5.jpg)]]
    8198   
     99
     100 * Both, sender and receiver, report measurements to a database, using the OML measurement framework. The file is saved as a sqlite3 file (extension .sq3); the file name for the experiment is shown in the last line of the tutorial's output and saved in the console under /var/lib/oml2
     101
     102To dump the database file for this experiment:
     103   {{{
     104    username@console.sb2:~$ sqlite3 /var/lib/oml2/sb8.orbit-lab.org_2011_07_12_16_00_33.sq3 ".dump"
     105   }}}
     106
    82107
    83108