Sorry guys, I should mention that I added this script, and was recommended by a guy on the notebookreview site. I'm a complete UNIX noob, but the script worked because of the same result as this:
Could this be the cause? And is there a way to reverse it if I stuffed it up by doing this?
Enable 'noatime'
Ready for an advanced one? Very briefly, normally OS X wants to write a tiny amount of data every time it reads something from the disk. This is in place for a reason, but no one can figure out exactly why, especially with the entire file system being journaled. This is a hold over from Unix and is yet another thing we can do to optimize the OS in general and the potentially the life of the SSD. It does take a few steps to set up.
First, Launch Text Edit, change the document type to Plain Text and paste in:
PHP Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.my.noatime</string>
<key>ProgramArguments</key>
<array>
<string>mount</string>
<string>-vuwo</string>
<string>noatime</string>
<string>/</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
Save this file anywhere convenient. I used my Desktop. Open the Terminal and change to the directory where you saved it. If it was the Desktop use:
Code:
cd ~/Desktop. Then, change the owner of your file to the system:
Code:
sudo chown root:wheel myfile.txt.
Now, using the Terminal we want to move this file to the LaunchDaemons folder in System > Library
Code:
sudo mv myfile.txt /Library/LaunchDaemons/com.my.noatime.plist.
For those not familiar with *nix speak. The last command both moved and renamed the file, changing it to a plist type the OS can understand.
Reboot.
Once you are back, check the status in the Terminal:
Code:
mount | grep " / "You should get something like:
Code:
/dev/disk0s2 on / (hfs, local, journaled, noatime)
The original source here:
http://forum.notebookreview.com/apple-mac-os-x/479350-ssd-optibay-install-mid-2010-15-unibody.html