windows 7 - Clone a hard drive except for one partition?

05
2014-04
  • posfan12

    My existing hard drive is 500GB with 60GB of programs, operating system files, etc. on one partition, and lots of data on a second partition. I want to clone the C drive to a new SSD I bought, but I don't want to clone my data on the D drive.

    I have tried EZ Gig IV, but it only clones whole drives instead of just the partitions you want.

    What are my options?

  • Answers
  • cybernard

    get partedmagic burned to a CD/DVD connect both hard drive and SSD with power off. boot from CD/DVD launch partition editor Use the drop down in the upper right hand corner to select your old hard drive. Right click on the C: partition and select copy Use the drop down in the upper right hand corner to select your SSD. Right click and do a paste.

     If you get an error the partition table does not exist.
    

    the menu across the top has the option to create a partition table. As all current SSD are below 2tb I suggest you use the msdos kind of partition table.

    If you previously got the partition table error you should now have one and be able to right click and paste.

    After that you may resize the partition on the SSD to your liking.

    Click the apply button and wait

    and wait some more.

    Right click on the partition on the SSD and Manage flags then check boot flag on.

    Reboot the system and go into your BIOS

    Change the boot order to boot from your SSD.

    Then boot your pc from the SSD.

    If everything is in order you may now go back and delete the old partition from your hard drive. Inside Windows 7 and above the Disk Management tool has the ability to delete non system, non boot, and non swap/hibernation file partitions. In addition, under the same restrictions, it can also resize a partition.


  • Related Question

    partitioning - Is there a way to do a sector level copy/clone from one hard drive to another?
  • irrational John

    Without going into distracting details, I'm attempting to duplicate the contents of the 500GB drive in my MacBook to another 500GB drive. But this is turning out to be an unexpected hassle because the drive contains both the OS X partition and an NTFS partition with Win 7 via Apple's Boot Camp.

    With the exception of Clonezilla, the tools I have looked at so far all have some limitation. The Mac tools don't want to deal with the NTFS partition. The Windows tools are totally clueless about either the HFS+ partition and/or the hybrid MBR/GPT Boot Camp partitioning.

    Clonezilla looked like it would do what I want but apparently I can't figure out how to use it. After doing what I thought was a sector to sector copy I found that only the NTFS partition had been migrated. The others were apparently empty. (And frankly, I'm not positive Clonezilla migrated the partition table correctly either).

    Note: It takes over 2 hours using SATA to read/write all sectors with these drives. So I'm not up for using trial & error to narrow in on the right combination of Clonezilla options to use.

    I'm beginning to think that maybe the answer is to boot Linux (probably Ubuntu) and then use some ancient BSD command. Trouble is I don't know what command (or parameters to use) in order to do a sector level copy from one drive to another. As far as I know the drives have the same number of sectors so this should be trivial. Sigh.


    Yes, dd does work. (Phew!)

    I especially appreciated the link in the answer to the corresponding question/exchange on serverfault.com as I never would have thought to look there.

    Here are some additional tweaks I used after learning about them from the exchange on serverfault.

    • Don't use the default transfer size of 512 bytes. In my case I used the form
      dd if=/dev/sda of=/dev/sdb bs=8192
      since this significantly increased the data transfer rate. (It happened that the size of both my drives was a multiple of 8192. Not sure if that mattered, but it felt safer to do it that way).

    • There is a way to get some progress status from the dd command. Apparently dd displays its current transfer status when it receives the right signal. I used the method suggested in this serverfault answer. However, I used an interval of 120 seconds, not 10 as I didn't want to get "flooded" with progress info.

    It took about 2 hours 20 minutes to completely clone my 500GB drive to another 500GB drive. The final status message from dd was
    500107862016 bytes (500 GB) copied, 8353.86 s, 59.9 MB/s

    What it lacks in terms of options this process certainly makes up for in simplicity and completeness. :-)


  • Related Answers
  • James T

    In linux the dd command can do what you want.

    http://serverfault.com/questions/4906/using-dd-for-disk-cloning

    Just make sure not to clone the empty drive onto the drive you want to clone.