------------------------------------------------------------------------------- Clonezillia Manual Restore That is without booting from a clonezilla live boot disk. Guides https://superuser.com/questions/770063/ http://drbl.sourceforge.net/faq/fine-print.php?path=./2_System/42_manually_ntfsclone.faq#42_manually_ntfsclone.faq http://drbl.sourceforge.net/faq/fine-print.php?path=./2_System/43_read_ntfsimg_content.faq#43_read_ntfsimg_content.faq Files are stored in parts that need to be are concatenated ("cat") together. EG: sda2.*.aa sda2.*.ac sda2.*.ab ... sda2.*.cn Check the filetype of the first sda2.*.aa file to verify what compression was was used file sda2.*.gz.aa sda2.ntfs-ptcl-img.gz.aa: gzip compressed data ... So to get single partclone (or whatever) image you would use cat sda2.* | gzip -d -c > sda2.ntfs-ptcl.img Or you can use pigz pigz --decompress --stdout sdb1.ext4-ptcl-img.gz.aa > sda2.ntfs-ptcl.img --- You can see exactly what command was used to generated the files from the logfile. "clonezilla-img" but the file name will generally tell you too. For example Command to generate the files was... partclone.ntfs -z 10485760 -N -L /var/log/partclone.log -c -s /dev/sda2 --output - | pigz -c --fast -b 1024 --rsyncable | split -a 2 -b 4096MB - /home/partimag/Image_Lenovo_2019-02-18/sda2.ntfs-ptcl-img.gz. 2> /tmp/split_error.CV8RFL And partclone reported the following about the partition File system: NTFS Device size: 747.5 GB = 182506827 Blocks Space in use: 303.1 GB = 74002734 Blocks Free Space: 444.4 GB = 108504093 Blocks Block size: 4096 Byte Total block 182506827 As you can see partclone was used... So the command to restore the image to a partition (that is larger than the original) or to mountable image is... cat sda2.ntfs-ptcl-img.gz.* | gzip -d -c | partclone.ntfs --restore -s - -o /dev/sdc1 Or if the image was made using ntfsclone... cat sda2.ntfs-ptcl-img.gz.* | gzip -d -c | ntfsclone --restore-image -o /dev/sdc1 - If you restore to a file ("disk_sda2.img") instead of disk partition (it will be HUGE) you can mount it using... mount -o loop -t ntfs disk_sda2.img /mnt Then you can grab the files you want -------------------------------------------------------------------------------