This is a followup to an
older journal post.
I decided to finally do something and got me a 1TB WD Blue.
I knew I didn't want to lose several days of work doing a clean Windows install followed by hunting down drivers and installing all the stuff I already had, so I decided to take a different route - cloning the old drive into the new one.
I looked into the suggestions posted and also had a look out there in the vastness of the internet. It looked like dd was an easy enough option.
I borrowed my dad's desktop and plugged both drives to it (and unplugged his because it didn't have any more SATA cables). Booted up a Linux Mint live disc and thought, why not use GParted? So that's what I did instead. I copied all the partitions into the new drive with GParted, set the same boot flags, put the disk back in the laptop and... nothing. A measly blinking cursor welcomed me.
Five hours of messing with it later, turns out it was failing because I didn't copy the MBR. So I copied it using dd and NOW I FINALLY HAVE A WORKING DRIVE.
So if anybody finds themselves in need of doing this too*, here's a summary of the process:
1. Plug both drives into the same computer
2. If said computer doesn't have Linux on it already, boot a live disc.
3. Run GParted, triple check which drive is your original drive and which drive is your target drive.
4. Copy every single partition from the original drive into the new drive.
5. Make sure the boot flag is set in the exact same partition (and any other flags the original drive may have). This still won't boot yet because the MBR hasn't been copied.
6. The MBR is located at the first 512 bytes of the drive. Assuming your original drive is /dev/sda and your target drive is /dev/sdb (otherwise replace accordingly), fire up the console and copy it with this command:
dd if=/dev/sda of=/dev/sdb bs=512 count=17. Put the new drive back in the target computer and leave the old drive in the back of a drawer until the end of time.
After this I only booted up Windows from the new drive and created a new partition in the unused space. Now the most I have to do is move some files over to balance the free space. The great thing is that the new drive is a lot quieter than the old one! Noise drives me mad.
As a side bonus, I now have a complete backup of the entirety of my files on this computer including Windows up until today.
I may also move my Steam installation to the other partition. Haven't decided yet.
*I'm also writing it here to save myself a future search.