Prepare a disk to be imaged by Clonezilla for use on smaller disks?

Inside every clonezilla image, there is a file called sda-pt.parted. You can edit the sector size of /dev/sda to be smaller than your target hard drive. Here is how we do it: Install OS and programs Shrink partition in OS to lowest possible value (we find under 80 works best) Sysprep and clone Edit image/sda-pt.parted … Read more

Using DD for disk cloning

dd is most certainly the best cloning tool, it will create a 100% replica simply by using the following command. I’ve never once had any problems with it. dd if=/dev/sda of=/dev/sdb bs=32M Be aware that while cloning every byte, you should not use this on a drive or partition that is being used. Especially applications … Read more