Wiki Dnsmasq Dnsmasq provides network infrastructure for small networks: DNS, DHCP, router advertisement and network boot. It is designed to be lightweight and have a small footprint, suitable for resource constrained routers and firewalls. It has also been widely used…
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…