2

What's the difference between cloning a hard drive and copying all the data (files and folders) from one drive to another? Is there invisible system data that you can't transfer?

2
  • 1
    Your question is vague and poorly worded because there are many ways to "copy" a "drive". For instance Linux provides many methods for "copying all the data", including dd if=/dev/sda of=/dev/sdb for copying an entire physical drive sector by sector.
    – sawdust
    Commented Jul 10, 2018 at 2:28
  • 2
    cloning is the same as imaging, which stores the whole drive's state instead of visible files. Copying the drive using dd is a simple form of creating a drive image
    – phuclv
    Commented Jul 10, 2018 at 3:11

1 Answer 1

0

Several differences:

  • cloning copies the complete layout of the disk, including physical location of all directories and files. At least some older windows versions would not run without specific files being in specific (physical) places.
  • cloning copies also content of deleted (and 'non-existant') files
  • cloning copies also the partition table, and potential hidden or unaccessible OS partitions. Those are required to run, at least for Windows 10.
  • cloning is typically faster, as it doesn't need to care about directory structure, file structure, fragmentation, etc.
  • most important: if you are copying the current operating system disk, a lot of files are locked, and cannot be copied. You will not be able to run the copy of most OS.

If you are not copying the current OS disk, but only data: only the speed is relevant - coying is still much slower.

2
  • 1
    This answer is wrong since it seems to presume that the OP means a Windows file copy (without declaring this assumption). Also an answer that explains the difference between X and Y by repeatedly explaining that "X does Y" (i.e. "cloning copies ...") needs a larger vocabulary.
    – sawdust
    Commented Jul 10, 2018 at 2:38
  • 2
    Also cloning makes the drive bootable and file copy does not.
    – Moab
    Commented Jul 12, 2018 at 21:38

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .