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
Dell Windows 7 Laptop and Wifi...
PROBLEMThe Dell Latitude E7270 & E7250 laptops my company uses have various wifi-related issues under 32-bit Windows 7. They won't connect to certain wifi ...
How To Build an Ubuntu Web Ser...
The following is a task outline for building an Ubuntu-based web-server to run Joomla and JomSocial. I created this for my own notes, so apologies if it's...
Outlook - Restore Missing Cate...
PROBLEMYou open Outlook and find that your categories are missing.SOLUTION1) Drop to a command line.2) Run outlook.exe with the "remigratecategories" option.out...
The Hunt for the Ultimate Blue...
I'm obsessed with bluetooth. So much so that I've been hunting for heaven's own pair of bluetooth headphones for my Tokyo subway commutes. I'm already on my 5...