| 1 | |
| 2 | == load == |
| 3 | |
| 4 | {{{ |
| 5 | user@console:omf help load |
| 6 | Install a given disk image on the nodes in a testbed |
| 7 | Usage: |
| 8 | omf-5.4 load [-h] [-i IMAGE_PATH] [-o TIMEOUT] [-t TOPOLOGY] [-c AGGREGATE] |
| 9 | |
| 10 | With: |
| 11 | -h, --help print this help message |
| 12 | -c, --config AGGREGATE use testbed AGGREGATE |
| 13 | -t, --topology TOPOLOGY a valid topology file or description (defaults to 'system:topo:all') |
| 14 | (if a file 'TOPOLOGY' doesn't exist, interpret it as a comma-separated list of nodes) |
| 15 | -i, --image IMAGE disk image to load |
| 16 | (default is 'baseline.ndz', the latest stable baseline image) |
| 17 | -o, --timeout TIMEOUT a duration (in sec.) after which imageNodes should stop waiting for |
| 18 | nodes that have not finished their image installation |
| 19 | (default is 800 sec, i.e. 13min 20sec) |
| 20 | --outpath PATH Path where the resulting Topologies should be saved |
| 21 | (default is '/tmp') |
| 22 | --outprefix PREFIX Prefix to use for naming the resulting Topologies |
| 23 | (default is your experiment ID) |
| 24 | |
| 25 | Some Examples: |
| 26 | omf-5.4 load |
| 27 | omf-5.4 load -t system:topo:all -i baseline-2.4.ndz |
| 28 | omf-5.4 load -t omf.nicta.node1 -i wireless-2.6.ndz |
| 29 | omf-5.4 load -t omf.nicta.node1,omf.nicta.node2 -i baseline.ndz -o 400 |
| 30 | omf-5.4 load -t system:topo:circle -i my_Own_Image.ndz |
| 31 | omf-5.4 load -t my_Own_Topology -i baseline-2.2.ndz -t 600 -c grid |
| 32 | omf-5.4 load -t my_Own_Topology --outpath ./ --outprefix my_Own_Prefix |
| 33 | }}} |