Skip to main content

How to upgrade your MacBook Pro with an SSD

If you have an old MacBook Pro with one foot in the grave, the single best thing you can do to breathe new life into it is replace its traditional spinning hard drive with a solid-state drive. There's a reason that all modern MacBooks and the vast majority of all laptops sold today use SSDs. They are more energy efficient, more reliable and quieter than hard drives with magnetic, spinning disks. And they aren't nearly as costly per gigabyte as they once were.
I replaced my 2011-era MacBook Pro's 500GB hard drive with the 500GB Samsung 850 Evo. The whole procedure took less than an hour (not counting the half a day it took to clone my MacBook's hard drive to the SSD). Really, the hardest part of the whole thing was tracking down a size 6T torx-head screwdriver for the four torx screws that help hold the hard drive in place. (I found them at my local Ace Hardware.)
As you'll see in the video below, my colleague Sharon Profis resurrected her 2009 MacBook Pro with an SSD and agrees with me that the process is simple and straightforward. And hugely effective. So, let's get to it!
Watch this: Upgrade your MacBook with an SSD
4:29

What you'll need:

Step 1: Prep the SSD

Start by connecting the SSD to your computer with a dock or cable. Once it's connected, launch Disk Utility (searchable through Spotlight), and select the SSD from the left sidebar. Then, click the Erase button at the top of the window and then click Erase. No need to change any settings, unless you'd like to give it a new name. This will format the drive and prep it for the next step.
Next, launch SuperDuper, and set it to clone your Mac's hard drive to the SSD. If you gave it a new name in Disk Utility, it'll show up as such. Then choose Backup All Files, and click Copy Now.
This could take anywhere from 30 minutes to a few hours, depending on how much you have stored on your hard drive. When the process is complete, eject the SSD and shut down your computer.

Step 2: Remove the hard drive

In case you missed it in the previous step, shut down your computer.
Remove your MacBook's back cover by unscrewing the tiny screws. Put them in a small container as you remove them; they are easy to misplace.
When the cover comes off, touch a metal part to release the static electricity. At this point, you might want to clean the inside of your Mac. I found that after years without cleaning, mine was full of dust. Use a soft brush or gentle bursts of compressed air to release the dust and grime.
To remove the hard drive, use the regular screwdriver to unscrew the two black screws belonging to the bracket securing the hard drive. Remove the bracket and set it aside.
Gently lift the hard drive. You'll see that a SATA ribbon is attached to one end. Carefully wiggle the connector -- not the ribbon itself -- to disconnect it.
Remove the four torx screws attached to the hard drive and set aside. At this point, you can store your hard drive away or convert it to an external hard drive. You're done with it.

Step 3: Install the SSD

Grab the SSD and screw in the four torx screws you removed from the hard drive. Then, carefully attach the SATA ribbon to the SSD, and insert the drive in the same configuration as the previous drive.
Re-attach the bracket. And finally, replace the back cover using the tiny screws.
If you made it this far without fumbling, congratulations! That was probably easier than you were expecting.
Now turn on your computer. It may take a couple of extra seconds as it gets acquainted with the new drive, but generally speaking, starting up your computer will be much faster than the past. You'll also notice that programs launch faster, saving files takes less time, and it feels less sluggish overall.
Editors' note: This story was originally published on October 4, 2016 and has since been updated to include new information.

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...