Skip to main content

Mounting a Clonezilla Image

  • Prepare a large disk in Linux

  • Say if your image is /home/partimag/YOURIMAGE/, and the image is /home/partimag/YOURIMAGE/hda1.ntfs-img.aa, hda1.ntfs-img.ab... run
 file /home/partimag/YOURIMAGE/hda1.ntfs-img.aa

to see it's gzip, bzip or lzop image. Say it's gzip, then you can run 

cat /home/partimag/YOURIMAGE/hda1.ntfs-img.* | gzip -d -c | ntfsclone --restore-image -o hda1.img -

Then you will have a "hda1.img" which you can mount it by 

mount -o loop -t ntfs hda1.img /mnt

Then all the files are in /mnt/

Comments

Popular posts from this blog