This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
$ brew install postgres | |
==> Installing postgresql dependency: ossp-uuid | |
==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/ossp-uuid-1.6.2.mavericks.bottle.1.tar.gz | |
######################################################################## 100.0% | |
==> Pouring ossp-uuid-1.6.2.mavericks.bottle.1.tar.gz | |
==> Caveats | |
This formula is keg-only, so it was not symlinked into /usr/local. | |
OS X provides a uuid.h which conflicts with ossp-uuid's header. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ brew install go | |
==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/go-1.2.2.mavericks.bottle.tar.gz | |
######################################################################## 100.0% | |
==> Pouring go-1.2.2.mavericks.bottle.tar.gz | |
==> Caveats | |
As of go 1.2, a valid GOPATH is required to use the `go get` command: | |
http://golang.org/doc/code.html#GOPATH | |
`go vet` and `go doc` are now part of the go.tools sub repo: | |
http://golang.org/doc/go1.2#go_tools_godoc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ brew install mysql | |
==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/mysql-5.6.16.mavericks.bottle.tar.gz | |
######################################################################## 100.0% | |
==> Pouring mysql-5.6.16.mavericks.bottle.tar.gz | |
==> Caveats | |
A "/etc/my.cnf" from another install may interfere with a Homebrew-built | |
server starting up correctly. | |
To connect: | |
mysql -uroot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ brew install rbenv | |
==> Downloading https://github.com/sstephenson/rbenv/archive/v0.4.0.tar.gz | |
Already downloaded: /Library/Caches/Homebrew/rbenv-0.4.0.tar.gz | |
==> Caveats | |
To use Homebrew's directories rather than ~/.rbenv add to your profile: | |
export RBENV_ROOT=/usr/local/var/rbenv | |
To enable shims and autocompletion add to your profile: | |
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi | |
==> Summary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ brew install osxfuse | |
==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/osxfuse-2.6.2.mavericks.bottle.tar.gz | |
Already downloaded: /Library/Caches/Homebrew/osxfuse-2.6.2.mavericks.bottle.tar.gz | |
==> Pouring osxfuse-2.6.2.mavericks.bottle.tar.gz | |
==> Caveats | |
If upgrading from a previous version of osxfuse, the previous kernel extension | |
will need to be unloaded before installing the new version. First, check that | |
no FUSE-based file systems are running: | |
mount -t osxfusefs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ brew install zsh | |
==> Installing dependencies for zsh: gdbm, pcre | |
==> Installing zsh dependency: gdbm | |
==> Downloading http://ftpmirror.gnu.org/gdbm/gdbm-1.11.tar.gz | |
######################################################################## 100.0% | |
==> ./configure --prefix=/usr/local/Cellar/gdbm/1.11 --mandir=/usr/local/Cellar/gdbm/1.11/share/man --infodir=/usr/local/Cellar/gdbm/1.11/share/info | |
==> make install | |
🍺 /usr/local/Cellar/gdbm/1.11: 16 files, 408K, built in 10 seconds | |
==> Installing zsh dependency: pcre | |
==> Downloading http://downloads.sourceforge.net/project/pcre/pcre/8.34/pcre-8.34.tar.bz2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ brew install git | |
==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/git-1.8.5.3.mavericks.bottle.tar.gz | |
######################################################################## 100.0% | |
==> Pouring git-1.8.5.3.mavericks.bottle.tar.gz | |
==> Caveats | |
The OS X keychain credential helper has been installed to: | |
/usr/local/bin/git-credential-osxkeychain | |
The 'contrib' directory has been installed to: | |
/usr/local/share/git-core/contrib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)" | |
brew install git | |
brew install zsh | |
sudo sh -c "echo '/usr/local/bin/zsh' >> /etc/shells" | |
chsh -s /usr/local/bin/zsh | |
brew install tmux | |
brew tap phinze/cask | |
brew install brew-cask | |
brew cask install google-chrome | |
brew cask install launchbar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 18 * * * rtmpdump -r rtmp://fms-base1.mitene.ad.jp/agqr/aandg2 --live -o ~/hoge.flv --stop 1920 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# see http://docs.puppetlabs.com/guides/puppetlabs_package_repositories.html#for-debian-and-ubuntu | |
wget https://apt.puppetlabs.com/puppetlabs-release-precise.deb | |
sudo dpkg -i puppetlabs-release-precise.deb | |
sudo apt-get update | |
# puppet-common instead of puppet | |
# This will install Puppet without the agent init script | |
sudo apt-get install puppet-common |