How to properly clone /dev/sda on /dev/sdb

5,367

In order to clone a disk, you absolutely should unmount all partitions. All modern desktop OS' have many services running in the background that write to the OS partition, and may also periodically write to other mounted partitions (even those on other disks) for whatever reason. The writes may be small and few, but any writes -- especially those involving filesystem metadata -- will wreck havoc with your cloning.

Typically one clones entire drives by booting a Linux Live CD/DVD/USB Key (pick any distribution you like, I prefer Mint for this kind of thing). This way your hard drives can remain unmounted.

The command you've got there will work fine, but as it stands, if a sector can't be read for any reason, dd will stop. You may want that behavior, or you may want it to continue... up to you. Arch has excellent documentation on disk cloning and they recommend something like this:

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

But read the documentation, especially around adjusting bs to higher values, as that can have a significant impact on cloning speed. If you want dd to stop if it encounters an error, remove the conv=noerror,sync part.

Share:
5,367

Related videos on Youtube

nikozavar
Author by

nikozavar

Updated on September 18, 2022

Comments

  • nikozavar
    nikozavar almost 2 years

    I have two hard disks with the same sizes - represented as /dev/sda and /dev/sdb. I am trying to copy /dev/sda on /dev/sdb. /dev/sda has one ext3 partition. /dev/sda and /dev/sdb have the same partition layout. What I do is use the following command:

    dd if=/dev/sda of=/dev/sdb

    When I mount the file system on /dev/sdb I see that not all of the changes are reflected on the device. In other words the disks are not the same. So it fails. And I don't seem to figure out why. Can this corrupt the partition table on /dev/sdb. Is this the proper way to clone a disk?

    Well, I don't unmount the file system on /dev/sda before I start cloning it. But I am absolutely sure that nobody is writing on it while the cloning is executing.

  • nikozavar
    nikozavar over 8 years
    misha256 thank you for your answer. By the way I have also used fsfreeze -f /directory_name to freeze the filesystem while the cloning is ongoing but it also fails.
  • misha256
    misha256 over 8 years
    @nikozavar No worries. Hmm, fsfreeze looks interesting, must look into that. Somehow I don't think fsfreeze can (or was designed to) work on the root partition of a running OS, but I could be wrong.
  • til
    til over 2 years
    tl, dr: Blocksize ideal often around 256K - Scripts and explanation: blog.tdg5.com/tuning-dd-block-size