I'm trying to restore a Clonezilla-created backup of a partition to recover some files. Below is what I tried (in Ubuntu linux); the restore operation failed. Is there anything else worth trying? Thanks!
Hi blynch
I found this which may help. The key is to mount the file as a loop device so that the filesystem block functions will work.
--->
Yes, but it's not straightforward. Here you are:
* Method 1: Use Clonezilla live to restore the image to a virtual machine (e.g. VMWare workstation or Virtual Box). Then mount the restored partition to read the contents.
* Method 2:
1. Prepare a large disk in Linux
2. Say if your image is /home/partimag/YOURIMAGE/, if the image is like /home/partimag/YOURIMAGE/*-ptcl-img.* (e.g. /home/partimag/YOURIMAGE/sda1.ext4-ptcl-img.gz.aa), follow this to restore the image.
If the the image is like /home/partimag/YOURIMAGE/sda1.ntfs-img.aa, sda1.ntfs-img.ab…, run
"file /home/partimag/YOURIMAGE/sda1.ntfs-img.aa"
to see it's gzip, bzip or lzop image. Say it's gzip, then you can run
cat /home/partimag/YOURIMAGE/sda1.ntfs-img.* | gzip -d -c | ntfsclone -restore-image -o sda1.img -
Then you will have a "sda1.img" which you can mount it by
mount -o loop -t ntfs sda1.img /mnt
Then all the files are in /mnt/
You can do the similar thing for the ext3, ext4 or reiserfs file system.
* Method 3: Use the tool partclone-utils to mount the image directly. (//NOTE// This program is not maintained by Clonezilla team. However, it will be included in the future release of partclone when the new release, e.g. 0.2 is released.).
<---
Above found at URL http://drbl.sourceforge.net/faq/fine-print.php?path=./2_System/43_read_ntfsimg_content.faq#43_read_ntfsimg_content.faq
bottom of page.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi blynch
Sorry I did not read your code thoroughly enough. The only thing I might suggest is to check the external connections as otherwise all coding seems correct.
Cheers…
Robert
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm trying to restore a Clonezilla-created backup of a partition to recover some files. Below is what I tried (in Ubuntu linux); the restore operation failed. Is there anything else worth trying? Thanks!
Is there really nothing worth trying…?
Hi blynch
I found this which may help. The key is to mount the file as a loop device so that the filesystem block functions will work.
--->
Yes, but it's not straightforward. Here you are:
* Method 1: Use Clonezilla live to restore the image to a virtual machine (e.g. VMWare workstation or Virtual Box). Then mount the restored partition to read the contents.
* Method 2:
1. Prepare a large disk in Linux
2. Say if your image is /home/partimag/YOURIMAGE/, if the image is like /home/partimag/YOURIMAGE/*-ptcl-img.* (e.g. /home/partimag/YOURIMAGE/sda1.ext4-ptcl-img.gz.aa), follow this to restore the image.
If the the image is like /home/partimag/YOURIMAGE/sda1.ntfs-img.aa, sda1.ntfs-img.ab…, run
"file /home/partimag/YOURIMAGE/sda1.ntfs-img.aa"
to see it's gzip, bzip or lzop image. Say it's gzip, then you can run
cat /home/partimag/YOURIMAGE/sda1.ntfs-img.* | gzip -d -c | ntfsclone -restore-image -o sda1.img -
Then you will have a "sda1.img" which you can mount it by
mount -o loop -t ntfs sda1.img /mnt
Then all the files are in /mnt/
You can do the similar thing for the ext3, ext4 or reiserfs file system.
* Method 3: Use the tool partclone-utils to mount the image directly. (//NOTE// This program is not maintained by Clonezilla team. However, it will be included in the future release of partclone when the new release, e.g. 0.2 is released.).
<---
Above found at URL http://drbl.sourceforge.net/faq/fine-print.php?path=./2_System/43_read_ntfsimg_content.faq#43_read_ntfsimg_content.faq
bottom of page.
Hi blynch
Sorry I did not read your code thoroughly enough. The only thing I might suggest is to check the external connections as otherwise all coding seems correct.
Cheers…
Robert
"cat: /media/320gb_external/Cpartn-img/sda2.ntfs-img.ab: Input/output error" -> Maybe there is hardware issue on your hard disk?
Steven.