Altering a Clonezilla Image

1

I've got a clonezilla image that I need to change out two license keys in. Is it possible to boot from the image and run off it to make changes? It's an image of Windows 7.

Joseph

Posted 2013-05-14T18:44:25.993

Reputation: 617

2Clonezilla images cannot be booted from. You will need to restore the image, boot to the disk, make the changem, and recreate the image. – Ramhound – 2013-05-14T19:17:07.983

@Joseph: You can loopback mount Clonezilla images to view/extract files, so perhaps modifying the files inside is possible too.

– Karan – 2013-05-17T03:03:48.657

Answers

1

From https://superuser.com/users/83283/ramhound

Clonezilla images cannot be booted from. You will need to restore the image, boot to the disk, make the changes, and recreate the image.

Joseph

Posted 2013-05-14T18:44:25.993

Reputation: 617

not necessarily need to boot, but at-minimum you'll need to mount it. – Jasen – 2019-12-24T06:23:08.650

0

You can make bootable image from clonezilla files with

cat sda1.ntfs-ptcl-img.gz.* | gzip -d -c | partclone.restore -C -s - -o sda1.img

If you have used not gzip compression, change accordingly. You cat chane compression format with file command.

The bad thing is I don't know how to get it back to Clonezilla format for sure.

PocketSam

Posted 2013-05-14T18:44:25.993

Reputation: 269