While the Seagate Momentus XT Hybrid sounds like a nice balance of performance and capacity there is a better hybrid storage solution. Just install two hard drives in your MacBook Pro. Use an SSD for your operating system, and parts of your home directory, and use a mechanical hard drive for storing your data.
SSD on top, 7200 RPM drive on bottom
First lets take a closer look at the Momentus XT Hybrid. It’s a traditional mechanical 7200 RPM hard drive with an onboard 4 GB SSD. The drive uses the 4 GB SSD to cache files that are frequently accessed. Over time the drive becomes smarter and the most used files will be read from the SSD. This sounds great, except it’s only 4 GB. The operating system and a few applications will use all this space. I run VMWare on my machine along with applications like Photoshop and Lightroom. I want all my Applications to be stored on SSD, and just the larger data files (virtual machines, photos, movies, music, etc) to be stored on a mechanical drive.
The parts you need to build this set up are as follows:
The installation is very straightforward. OWC provides excellent instructions and all the tools necessary to complete the installation.
Once you’ve got OS X installed (cloned) onto the SSD then go through the following process to move folders from your home directory over the 7200 RPM drive.
- Copy the directory (Music for example) over to the data drive.
- Delete the directory from the SSD.
- Create a symbolic link to add the directory back to your home folder.
cp -R ~/Music/ /Volumes/Data/Music/
sudo rm -rf ~/Music/
ln -s /Volumes/Data/Music ~/Music
I moved the following directories over:
- Downloads
- Movies
- Music
- Pictures
- Temp
- Virtual (where I keep my virtual machines)