Changes between Version 16 and Version 17 of Old/Tutorials/HowToImage


Ignore:
Timestamp:
Nov 29, 2007, 12:16:26 AM (16 years ago)
Author:
thierry
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Old/Tutorials/HowToImage

    v16 v17  
    2020
    2121 {{{
    22   imageNodes all baseline-7.11.ndz
     22  orbit load all baseline-7.11.ndz
    2323  # will write the disk image with the name 'baseline-7.11.ndz' on all the nodes on the 'grid'
    2424
    25   imageNodes [1..10,1..5] baseline-7.11.ndz
     25  orbit load [1..10,1..5] baseline-7.11.ndz
    2626  # same as above, but only on the nodes that have their coordinates x=[1..10] and y=[1..5]
    2727 
    28   imageNodes [[3,1],[5,6]] baseline-7.11.ndz
     28  orbit load [[3,1],[5,6]] baseline-7.11.ndz
    2929  # same as above, but only on nodes [3,1] and [5,6]
    3030
    31   imageNodes [1,1] baseline-7.11.ndz
     31  orbit load [1,1] baseline-7.11.ndz
    3232  # same as above, but only on node [1,1]
    3333 }}}
     
    5757=== Learning More ===
    5858
     59The 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
    5961At the end of the "imaging" process, you will have 3 ''topology'' files within your user directory:
    6062 
     
    6870
    6971
    70 Finally, the complete available option/commands for ''imageNodes'' are:
     72Finally, the complete available option/commands for imaging function are given by ''orbit help load'':
    7173
    7274 {{{
    73   imageNodes --help
     75  orbit help load
    7476
    7577Install a given disk image on the nodes in a testbed
    7678Usage:
    77       ImageNodes [-h]
    78       ImageNodes [TOPOLOGY] [IMAGE_PATH] [TIMEOUT] [DOMAIN]
     79      orbit load [-h]
     80      orbit load [TOPOLOGY] [IMAGE_PATH] [TIMEOUT] [DOMAIN]
    7981 
    8082      With:
     
    9597 
    9698      Some Examples:
    97                     imageNodes
    98                     imageNodes all
    99                     imageNodes all baseline-2.4.ndz
    100                     imageNodes [1,1] wireless-2.6.ndz
    101                     imageNodes [[1,2],[1,4]] baseline.ndz 400
    102                     imageNodes [[1,1],[2..6,1..2]]
    103                     imageNodes system:topo:circle my_Own_Image.ndz
    104                     imageNodes my_Own_Topology baseline-2.2.ndz 600 grid
     99                    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
    105107 }}}