Changes between Version 25 and Version 26 of Old/Tutorials/HowToImage
- Timestamp:
- May 13, 2010, 2:53:30 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Old/Tutorials/HowToImage
v25 v26 20 20 21 21 {{{ 22 o rbit load all baseline-7.11.ndz23 # will write the disk image with the name ' baseline-7.11.ndz' on all the nodes on the 'grid'22 omf load all ubuntu.ndz 23 # will write the disk image with the name 'ubutnu.ndz' on all the nodes on the 'grid' 24 24 25 o rbit load [1..10,1..5] baseline-7.11.ndz25 omf load [1..10,1..5] ubuntu.ndz 26 26 # same as above, but only on the nodes that have their coordinates x=[1..10] and y=[1..5] 27 27 28 o rbit load [[3,1],[5,6]] baseline-7.11.ndz28 omf load [[3,1],[5,6]] ubuntu.ndz 29 29 # same as above, but only on nodes [3,1] and [5,6] 30 30 31 o rbit load [1,1] baseline-7.11.ndz31 omf load [1,1] ubuntu.ndz 32 32 # same as above, but only on node [1,1] 33 33 }}} … … 36 36 37 37 {{{ 38 Imaging nodes: '[1..20,1..20]' with image ' baseline-7.11.ndz' on default domain (retrieved from hostname)38 Imaging nodes: '[1..20,1..20]' with image 'ubuntu.ndz' on default domain (retrieved from hostname) 39 39 INFO init: NodeHandler Version 4.2.0 (1272) 40 40 INFO init: Experiment ID: grid_2007_07_03_03_13_50 … … 57 57 == Learning More == 58 58 59 The generic '''o rbit''' command used above is the access point to control various ORBIT functions, such as the imaging of nodes with the sub-command "load". To see a list of all the available '''orbit''' commands, you should type ''"orbithelp"''.59 The generic '''omf''' command used above is the access point to control various ORBIT functions, such as the imaging of nodes with the sub-command "load". To see a list of all the available '''omf''' commands, you should type ''"omf help"''. 60 60 61 61 At the end of the ''imaging'' process, you will have 3 ''topology'' files within your user directory: … … 70 70 71 71 72 Finally, the complete available option/commands for imaging function are given by ''"o rbithelp load"'':72 Finally, the complete available option/commands for imaging function are given by ''"omf help load"'': 73 73 74 74 {{{ 75 o rbithelp load75 omf help load 76 76 77 77 Install a given disk image on the nodes in a testbed … … 98 98 99 99 Some Examples: 100 o rbitload101 o rbitload all102 o rbitload all baseline-2.4.ndz103 o rbitload [1,1] wireless-2.6.ndz104 o rbitload [[1,2],[1,4]] baseline.ndz 400105 o rbitload [[1,1],[2..6,1..2]]106 o rbitload system:topo:circle my_Own_Image.ndz107 o rbitload my_Own_Topology baseline-2.2.ndz 600 grid100 omf load 101 omf load all 102 omf load all baseline-2.4.ndz 103 omf load [1,1] wireless-2.6.ndz 104 omf load [[1,2],[1,4]] baseline.ndz 400 105 omf load [[1,1],[2..6,1..2]] 106 omf load system:topo:circle my_Own_Image.ndz 107 omf load my_Own_Topology baseline-2.2.ndz 600 grid 108 108 }}}