Dec 05
Let’s say you have cloned a partition or volume group and you need to extract some files from the image. This worked for me:
- Prepare a large disk in Linux
- Download and install Partclone from http://sourceforge.net/projects/partclone/
- Find out the compression algorithm of your image with the file command
- Combine files, uncompress it (in this case with gzip) and create the image file
- Mount the uncompressed image
file VolGroup00-LogVol00.ext3-pctl-img.gz.aa
cat VolGroup00-LogVol00.ext3-pctl-img.gz.* | gzip -d -c | partclone.restore -C -s – -O /dir-to-new-image/image-name.img
mount -o loop /dir-to-new-image/image-name.img /mnt/name
Thanks for this, very useful. All the other sites note how to do this for ntfs rather than an ext3 partclone image.
thanks !