Changes between Version 64 and Version 65 of Documentation/CGettingStarted
- Timestamp:
- Jan 30, 2013, 1:19:30 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentation/CGettingStarted
v64 v65 12 12 ssh username@sb1.orbit-lab.org 13 13 }}} 14 3. Load the baseline.ndz image on the nodes in reserved domain. [[CollapsibleStart(Load an image on the nodes)]] [[Include(Documentation/Short/LoadImage)]][[CollapsibleEnd]] Prior to executing the "Hello World" experiment, users need to install an image on the hard disks of the nodes. For this tutorial we will use '''baseline.ndz'''. This image is built on top of '''Ubuntu 12.04''', and is pre-configured with the proper modules and start up scripts to take advantage of the rest of the Orbit [wiki:/Software software] / [wiki:/Hardware hardware]. 14 3. Load the baseline.ndz image on the nodes in reserved domain. [[CollapsibleStart(Load an image on the nodes)]] [[Include(Documentation/Short/LoadImage)]][[CollapsibleEnd]] Prior to executing the "Hello World" experiment, users need to install an image on the hard disks of the nodes. For this tutorial we will use '''baseline.ndz'''. This image is built on top of '''Ubuntu 12.04''', and is pre-configured with the proper modules and start up scripts to take advantage of the rest of the Orbit [wiki:/Software software] / [wiki:/Hardware hardware]. The imageing process will turn the nodes back off after completing imageing. At this point the nodes disks are imaged with the ''basline'' image and need to be turned back on before proceeding. 15 15 {{{ 16 16 username@sb1.orbit-lab.org:~$ omf tell -a offh -t all … … 18 18 username@sb1.orbit-lab.org:~$ omf load -i baseline.ndz -t all 19 19 ... 20 }}}21 The imageing process will turn the nodes back off after completing imageing. At this point the nodes disks are imaged with the ''basline'' image and need to be turned back on before proceeding:22 {{{23 20 username@console.sb1:~$ omf tell -a on -t all 24 21 }}} 25 22 Give the nodes a couple of minutes to turn on / boot, then check their status with omf stat 26 23 4. Run the experiment: execute your "Hello World" experiment.[[CollapsibleStart(Execute experiment with omf)]][[Include(Software/cOMF/aExec)]][[CollapsibleEnd]] 24 {{{ 25 username@console.sb1:~$ omf exec test:exp:tutorial:hello-world-wireless 26 INFO NodeHandler: OMF Experiment Controller 5.4 (git c005675) 27 INFO NodeHandler: Slice ID: default_slice (default) 28 INFO NodeHandler: Experiment ID: default_slice-2013-01-29t01.03.19-05.00 29 INFO NodeHandler: Message authentication is disabled 30 INFO Experiment: load system:exp:stdlib 31 INFO property.resetDelay: resetDelay = 230 (Fixnum) 32 INFO property.resetTries: resetTries = 1 (Fixnum) 33 INFO Experiment: load system:exp:eventlib 34 INFO Experiment: load test:exp:tutorial:hello-world-wireless 35 INFO property.duration: duration = 60 (Fixnum) 36 INFO property.graph: graph = false (FalseClass) 37 INFO Topology: Loading topology 'system:topo:imaged'. 38 INFO Topology: Loading topology '/tmp/pxe_slice-2013-01-26t22.21.22-05.00-topo-success'. 39 INFO ALL_UP_AND_INSTALLED: Event triggered. Starting the associated tasks. 40 INFO exp: This is my first OMF experiment 41 INFO exp: Request from Experiment Script: Wait for 15s.... 42 INFO node1-1.sb1.orbit-lab.org: Device 'net/w0' reported Not-Associated 43 INFO node1-2.sb1.orbit-lab.org: Device 'net/w0' reported Not-Associated 44 INFO node1-1.sb1.orbit-lab.org: Device 'net/w0' reported 12:B2:78:8E:8D:4F 45 INFO node1-2.sb1.orbit-lab.org: Device 'net/w0' reported 12:B2:78:8E:8D:4F 46 INFO exp: All my Applications are started now... 47 INFO exp: Request from Experiment Script: Wait for 60s.... 48 INFO exp: All my Applications are stopped now. 49 INFO EXPERIMENT_DONE: Event triggered. Starting the associated tasks. 50 INFO NodeHandler: 51 INFO NodeHandler: Shutting down experiment, please wait... 52 INFO NodeHandler: 53 INFO run: Experiment default_slice-2013-01-29t01.03.19-05.00 finished after 1:23 54 55 username@console.sb1:~$ 56 }}} 27 57 5. Analyze the results 28 58