You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of clonezilla-live-3.1.1-27-amd64.iso, this is how generating checksums using "Device - image > Disk-Image" of an NTFS drive containing mutiple partitions works. Also I know that this is an older version, but I checked the change log to see if clonezilla's behavior had changed in the newer versions, but it doesn't seem to have. Please feel free to correct me if I'm wrong.
Clone Partition 1.
Generate checksums of files in partition 1.
Clone Partition 2.
Generate checksums of files in partition 2.
Clone Partition 3.
Generate checksums of files in partition 3.
Clone Partition 4.
Generate checksums of files in partition 4.
But this is suboptimal. What if the device being cloned fails during step 2, step 4 or step 6. This would result in a failure to clone the remaining partitions.
Generating checksums means reading the files, which may be highly fragmented on mechanical drives. This significantly increases wear on the disk(which might result in failure before all partitions have been cloned). So checksumming individual files must only happen after all partitions have been cloned first.
The safest way to clone disk(containing 4 partitions) and generate file checksums is...
Clone Partition 1.
Clone Partition 2.
Clone Partition 3.
Clone Partition 4.
Generate checksums of files in partition 1.
Generate checksums of files in partition 2.
Generate checksums of files in partition 3.
Generate checksums of files in partition 4.
This is also how it should work when cloning only a few selected partitions. If I select Partitions 2 and 4 and tell clonezilla to generate checksums, then clonezilla should...
Clone Partition 2.
Clone Partition 4.
Generate checksums of files in partition 2.
Generate checksums of files in partition 4.
Thank you so much for clonezilla! It's amazing!
The text was updated successfully, but these errors were encountered:
Generate the checksums of files in a file system in batch mode, not
right after the image of device is saved.
Thanks to barkoder for asking this.
Ref: #126
As of
clonezilla-live-3.1.1-27-amd64.iso
, this is how generating checksums using "Device - image > Disk-Image" of an NTFS drive containing mutiple partitions works.Also I know that this is an older version, but I checked the change log to see if clonezilla's behavior had changed in the newer versions, but it doesn't seem to have. Please feel free to correct me if I'm wrong.
But this is suboptimal. What if the device being cloned fails during step 2, step 4 or step 6. This would result in a failure to clone the remaining partitions.
Generating checksums means reading the files, which may be highly fragmented on mechanical drives. This significantly increases wear on the disk(which might result in failure before all partitions have been cloned). So checksumming individual files must only happen after all partitions have been cloned first.
The safest way to clone disk(containing 4 partitions) and generate file checksums is...
This is also how it should work when cloning only a few selected partitions. If I select Partitions 2 and 4 and tell clonezilla to generate checksums, then clonezilla should...
Thank you so much for clonezilla! It's amazing!
The text was updated successfully, but these errors were encountered: