Today, when I clicked on Package Control: Install Package from Command Shift P, I got "There are no packages available for installation" error. This error is happened with network error. First get IPV4 address of sublime.wbond.net, run this command line…
Remove and Rebuild Macintosh Recovery HD Partition
Remove Recovery HD Partition Open terminal and run this command $ diskutil eraseVolume HFS+ Blank /dev/disk1s3 ... you will see ... Started erase on disk1s3 Recovery HD Unmounting disk Erasing Initialized /dev/rdisk1s3 as a 620 MB case-insensitive HFS Plus volume…
Automatically Start MySQL Server on OS X Yosemite
MySQL can't start automatically on starts up in OS X Yosemite. Create /Library/LaunchDaemons/com.mysql.mysql.plist and save it with the following plist <?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>KeepAlive</key> <true /> <key>Label</key> <string>com.mysql.mysqld</string> <key>ProgramArguments</key> <array>…
Get MAMP Working OS X 10.10 Yosemite
I upgrade to OS X 10.10 Yosemite today form App Store, but my Apache , PHP and MySQL not work well. So I write this post to note my fix method, I wanna this maybe helpful for you. User Level…