Make sure the partclone package is installed.
apt-get install partclone
Create an empty image file.
touch image-file.img
Restore the clonezilla files into the image file.
cat sda1.ext3.ptcl-img.gz.* | gzip -d -c | sudo partclone.restore -C -s - -O image-file.img
NOTES
* This is 3 commands on 1 line with pipes.
* Be sure to include the lone hyphen in the last command. That's not a typo!
Mount the image:
mount -o loop -t ext3 /folder-path/image-file.img /mnt
If you converted an NTFS partition, it probably won't mount. Try this...
Mount the image - NTFS:
ntfs-3g /folder-path/image-file.img /mnt
Special thanks to this very helpful forum thread: http://ubuntuforums.org/showthread.php?t=872832
Related Articles
Combine Image File and Audio F...
I wanted to figure out a way to quickly and easily combine an image file (jpg) and audio file (mp3) into a video file (mov) using the free media converter tool ...
MS Outlook - None of your emai...
PROBLEMYou send email to a recipient, but immediately receive an error bounce-back message that says "None of your email accounts could send to this recipient."...
JomSocial - How to Disable Cov...
I don't particularly like Facebook's cover photo feature, so I didn't particularly like it when JomSocial followed suit. Here's how to disable JomSocial's cove...
Google is Skynet
Has anyone besides me noticed the uncanny resemblance between Google and "Skynet" from the Terminator movies? It's no secret that Google's ultimate goal is con...