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
Why Linux is Cool
Linux proudly sits in a very special place in the heart of the IT world. Watching Linux pros clack away at the command line inspires a sense of awe and ador...
How to Clear Gmail iOS App Cac...
I was annoyed recently because my iPhone Gmail app didn't show the latest saved drafts, and I couldn't for the life of me figure out how to clear the app's cach...
How to Modify JomSocial to Sup...
The open source stuff that JomSocial uses to convert and render video uploads (ffmpeg) also supports audio files. I thought it would be cool to modify JomSocia...
UnRAID - Creating and Mounting...
Here's how to create and mount an encrypted unassigned device in UnRAID. 1) Make sure the unassigned devices plugin is installed in UnRAID. :-) 2) Wipe the de...