Changes between Version 48 and Version 49 of Documentation/CGettingStarted
- Timestamp:
- Jul 12, 2011, 9:32:52 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentation/CGettingStarted
v48 v49 72 72 [[Image(newhowto4.jpg)]] 73 73 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. 75 75 {{{ 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 77 94 }}} 78 95 Once this experiment is started, the output should look similar to: … … 80 97 [[Image(newhowto5.jpg)]] 81 98 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 102 To 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 82 107 83 108