Japanatron Logo

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

Linux and NTLMv2 Proxy Authent...

My company's firewall enforces NTLMv2 proxy authentication, which kinda sucks for some Linux hosts since I can't pass that authentication directly on the comman...

The Hunt for the Ultimate VPS ...

If IT geek-dom were a crime, I'd be on death row by now.  Fortunately, it is not; so I continue my dorky IT pursuits--the latest of which is finding a VPS cloud...

Nginx - Blocking Access to Joo...

I propose blocking all access to Joomla's administrator login page and front-end user login (if you don't use it) because I constantly see a-hole bots in my log...

How to Spot an iPhone Unlock S...

While Apple technically calls it "iPhone IMEI database whitelisting," it's better known around the web as a factory unlock--a process that allows your iPhone to...