I have a question. Is there a possibility to clone 4 different hard drives to 4 different images (smb server target) at once. if yes how can i make it ?
ragards
lukasz
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
hello
I have a question. Is there a possibility to clone 4 different hard drives to 4 different images (smb server target) at once. if yes how can i make it ?
ragards
lukasz
4 different hard drives on the same machine?
You want to save that as 4 different image name?
If so, you can use the comamnd "ocs-sr" to do that, just write that as a script, and put them run in the background, like:
1. Get the command from the prompt if you are not familiar with ocs-sr, for example:
http://clonezilla.org/clonezilla-live/doc/01_Save_disk_image/images/ocs-10-img-save-command-prompt.png
ocs-sr -q2 ... savedisk image1 sda &
ocs-sr -q2 ... savedisk image2 sdb &
ocs-sr -q2 ... savedisk image3 sdc &
ocs-sr -q2 ... savedisk image4 sdd &
chmod 755 my-backup.sh
Then you can run my-backup.sh to do that.
Steven.