I currently have Clonezilla live auto-deploying a device image without any user prompts to a headless device within a specialized system that runs a specific application. My team would like to be able to see the progress of the image deployment or anything relational to the status of the imaging from a separate device. The local LAN does not have any real network architecture, devices are three windows 10 client machines, including the headless machine and a switch.
Is there anything built into Clonezilla that could broadcast status data on a local LAN? If Clonezilla would not support this directly, is the status information of the image deployment stored in any specific log file? I know that you can run custom bash scripts within the command structure of Clonezilla. I’m thinking that I could potentially write a bash script to monitor changes to a specific file/files, then send the data to one of the other devices on the LAN.
Is this the best way to get the status data out to another device? Any advice would be appreciated.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I currently have Clonezilla live auto-deploying a device image without any user prompts to a headless device within a specialized system that runs a specific application. My team would like to be able to see the progress of the image deployment or anything relational to the status of the imaging from a separate device. The local LAN does not have any real network architecture, devices are three windows 10 client machines, including the headless machine and a switch.
Is there anything built into Clonezilla that could broadcast status data on a local LAN? If Clonezilla would not support this directly, is the status information of the image deployment stored in any specific log file? I know that you can run custom bash scripts within the command structure of Clonezilla. I’m thinking that I could potentially write a bash script to monitor changes to a specific file/files, then send the data to one of the other devices on the LAN.
Is this the best way to get the status data out to another device? Any advice would be appreciated.
Clonezilla does not support this directly.
As you mentioned, definitely you can have your own script to do that.
The restoring progress is written to /var/log/clonezilla.log, hence you can monitor it.
Or you can have screen or tmux session and you can access it using ssh. For more info, please refer to this:
https://clonezilla.org/fine-print-live-doc.php?path=./clonezilla-live/doc/08_Screen_session_with_PXE/00-pxe-setting.doc#00-pxe-setting.doc
Steven