If the image is compressed with gzip: cat dir/hda2.ntfs-ptcl-img.gz.* | gunzip | partclone.restore --restore_raw_file -C -s - -o hda2.img
If the image is compressed with zstd: zstdcat dir/hda2.ntfs-ptcl-img.zst.* | partclone.restore --restore_raw_file -C -s - -o hda2.img
mount -o loop hda2.img /mnt -t ntfs -o ro
Note: This needs to be done as root, since partclone requires root permissions to write the image, and the mount command will likely only work as root.For zst images you'll need to install zstd (e.g. apt install zstd)
There are some limitations. As pointed
out earlier, Clonezilla can't restore
an image to a drive that is smaller
than the original drive. It also
doesn't allow for retrieving specific
files in an image, it's the whole
partition or nothing.
Since the Linux way is pretty much a lucky hack, I'd wait until this feature is officially developed for Windows.
Better use the
partclone
utility instead:cd /home/partimag/YOURIMAGE/
cat dir/hda2.ntfs-ptcl-img.gz.* | gunzip | partclone.restore --restore_raw_file -C -s - -o hda2.img
zstdcat dir/hda2.ntfs-ptcl-img.zst.* | partclone.restore --restore_raw_file -C -s - -o hda2.img
mount -o loop hda2.img /mnt -t ntfs -o ro
Note: This needs to be done as root, since
partclone
requires root permissions to write the image, and the mount command will likely only work as root. For zst images you'll need to install zstd (e.g. apt install zstd)See also CloneZilla FAQ Entry: "How can I restore those *-ptcl-img.* images into a file manually?"
You should be able to mount your CloneZilla image to extract files from it. See instructions here.
Note: For
lzo
images, replacegzip -d -c
withlzop -d -c
I've made a video that demonstrates how to restore the full disk backup into a virtual machine. Hope it helps: http://www.youtube.com/watch?v=ainjV3X6wqQ
Basically, what you need to do is:
I've written a program called clonezilla-util which can mount Clonezilla archives in Windows.
You can mount to a drive letter using this command (requires the Dokan driver):
Then you can access the files in explorer:
Alternate approach
If you don't want to use the Dokan driver, you can extract the partition images using this command:
That creates a file for each partition in the Clonezilla archive.
You can then use 7-Zip to inspect the contents:
Taken from this article:
Since the Linux way is pretty much a lucky hack, I'd wait until this feature is officially developed for Windows.
Try this software:
http://www.mountimage.com/
It looks like it could do it. 14 day trial.