no way to compare when less than two revisions
Differences
This shows you the differences between two versions of the page.
| — | homebrew [2015/06/01 22:29] (current) – created - external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== homebrew ====== | ||
| + | * [[Macbook]] | ||
| + | * [[OS X]] | ||
| + | * [[Percona homebrew]] | ||
| + | * [[Xcode]] | ||
| + | * [[dnsmasq]] | ||
| + | * [[launchctl]] | ||
| + | |||
| + | ** Install homebrew ** | ||
| + | |||
| + | < | ||
| + | ruby -e " | ||
| + | export GIT_SSL_NO_VERIFY=1 | ||
| + | brew install git | ||
| + | brew install openssl | ||
| + | </ | ||
| + | |||
| + | ** Install basics ** | ||
| + | |||
| + | < | ||
| + | brew install bash | ||
| + | sudo echo / | ||
| + | chsh -s / | ||
| + | sudo chsh -s / | ||
| + | </ | ||
| + | |||
| + | ** OpenSSL ** | ||
| + | |||
| + | If you want to use homebrew' | ||
| + | |||
| + | < | ||
| + | LDFLAGS: | ||
| + | CPPFLAGS: -I/ | ||
| + | </ | ||
| + | |||
| + | ** github ** | ||
| + | |||
| + | If you are pinging github a lot, you may need to use an authentication token. | ||
| + | |||
| + | To use with homebrew: | ||
| + | |||
| + | < | ||
| + | export HOMEBREW_GITHUB_API_TOKEN=foo-token-address | ||
| + | </ | ||
| + | |||
| + | ** Update repo ** | ||
| + | |||
| + | < | ||
| + | brew update | ||
| + | </ | ||
| + | |||
| + | ** Display upgrades ** | ||
| + | |||
| + | < | ||
| + | brew outdated | ||
| + | </ | ||
| + | |||
| + | ** Upgrade packages ** | ||
| + | |||
| + | < | ||
| + | brew upgrade | ||
| + | </ | ||
| + | |||
| + | ** Remove duplicate versions ** | ||
| + | |||
| + | < | ||
| + | brew cleanup openssl | ||
| + | </ | ||
| + | |||
| + | < | ||
| + | sudo su - user -l -c "brew cleanup" | ||
| + | </ | ||