Changes between Version 16 and Version 17 of Old/Tutorials/HowToImage
- Timestamp:
- Nov 29, 2007, 12:16:26 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Old/Tutorials/HowToImage
v16 v17 20 20 21 21 {{{ 22 imageNodesall baseline-7.11.ndz22 orbit load all baseline-7.11.ndz 23 23 # will write the disk image with the name 'baseline-7.11.ndz' on all the nodes on the 'grid' 24 24 25 imageNodes[1..10,1..5] baseline-7.11.ndz25 orbit load [1..10,1..5] baseline-7.11.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 imageNodes[[3,1],[5,6]] baseline-7.11.ndz28 orbit load [[3,1],[5,6]] baseline-7.11.ndz 29 29 # same as above, but only on nodes [3,1] and [5,6] 30 30 31 imageNodes[1,1] baseline-7.11.ndz31 orbit load [1,1] baseline-7.11.ndz 32 32 # same as above, but only on node [1,1] 33 33 }}} … … 57 57 === Learning More === 58 58 59 The generic '''orbit''' 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 ''orbit help''. 60 59 61 At the end of the "imaging" process, you will have 3 ''topology'' files within your user directory: 60 62 … … 68 70 69 71 70 Finally, the complete available option/commands for ''imageNodes'' are:72 Finally, the complete available option/commands for imaging function are given by ''orbit help load'': 71 73 72 74 {{{ 73 imageNodes --help75 orbit help load 74 76 75 77 Install a given disk image on the nodes in a testbed 76 78 Usage: 77 ImageNodes[-h]78 ImageNodes[TOPOLOGY] [IMAGE_PATH] [TIMEOUT] [DOMAIN]79 orbit load [-h] 80 orbit load [TOPOLOGY] [IMAGE_PATH] [TIMEOUT] [DOMAIN] 79 81 80 82 With: … … 95 97 96 98 Some Examples: 97 imageNodes98 imageNodesall99 imageNodesall baseline-2.4.ndz100 imageNodes[1,1] wireless-2.6.ndz101 imageNodes[[1,2],[1,4]] baseline.ndz 400102 imageNodes[[1,1],[2..6,1..2]]103 imageNodessystem:topo:circle my_Own_Image.ndz104 imageNodesmy_Own_Topology baseline-2.2.ndz 600 grid99 orbit load 100 orbit load all 101 orbit load all baseline-2.4.ndz 102 orbit load [1,1] wireless-2.6.ndz 103 orbit load [[1,2],[1,4]] baseline.ndz 400 104 orbit load [[1,1],[2..6,1..2]] 105 orbit load system:topo:circle my_Own_Image.ndz 106 orbit load my_Own_Topology baseline-2.2.ndz 600 grid 105 107 }}}