Find a program to disk clone, create / restore Image. The to clone hard drive, a hard drive or partition from an image to be generated are selected. In addition, the destination disk or directory must be set, in which the image is to be stored. There is the option to select whether the image is to be compressed or not.

Please Help :

Peter

Cloning a partition

From physical disk /dev/sda, partition 1, to physical disk /dev/sdb, partition 1.

# dd if=/dev/sda1 of=/dev/sdb1 bs=64K conv=noerror,sync

Warning: If output file of= (sdb1 in the example) does not exist, dd will create a file with this name and will start filling up your root file system!

Cloning an entire hard disk

From physical disk /dev/sdX to physical disk /dev/sdY

# dd if=/dev/sdX of=/dev/sdY bs=64K conv=noerror,sync

This will clone the entire drive, including the MBR (and therefore bootloader), all partitions, UUIDs, and data.

For more info: https://wiki.archlinux.org/index.php/disk_cloning