| 1 | |
| 2 | Go back --> [wiki:Documentation] --> [wiki:Documentation/orbit-pxe Orbit-PXE] |
| 3 | |
| 4 | |
| 5 | == Saving node images with Orbit-PXE == |
| 6 | |
| 7 | When you issue the saveNode command as follows: |
| 8 | |
| 9 | {{{ |
| 10 | saveNode 1,2 |
| 11 | }}} |
| 12 | |
| 13 | the nodehandler will request the node specified to reboot itself and load orbit-PXE into RAM (see [wiki:Documentation/orbit-pxe/loading Orbit-PXE Loading]). Once the node checks in with the Orbit-PXE's nodeagent the nodehandler will ask the node's nodeagent to save the current image it has loaded on disk by issuing the following command (TCP port 9006): |
| 14 | |
| 15 | {{{ |
| 16 | S 10.18.1.2 SAVEIMAGE frisbee:/export/orbit/image/tmp node-1-2-sb8-timestamp.ndz |
| 17 | }}} |
| 18 | |
| 19 | The nodeagent running on the node will then create /mnt/, mount the remote NFS server image path onto /mnt and issue the following command: |
| 20 | |
| 21 | {{{ |
| 22 | imagezip /dev/hda /mnt/node-1-2-timestamp.ndz |
| 23 | }}} |
| 24 | |
| 25 | Once nodeagent is done the node will be halted through: |
| 26 | |
| 27 | {{{ |
| 28 | shutdown -h now |
| 29 | }}} |