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
Blackberry - How to Manually I...
Since Blackberry is essentially dead in Japan, I face a pesky challenge of getting Japanese text input to work on Blackberries I receive from our head office. ...
Running Adobe Illustrator with...
Here's a quick one. I've been struggling with getting Adobe Illustrator (Creative Cloud) to run properly with user-level privileges. It would often freeze and...
How To Fix Google Nest Audio C...
Due to the cheap Japanese yen, I've been doing a lot of shopping recently. I decided to upgrade my aging Sony Google Assistant speaker to the latest Google Nes...
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...