Skip to content

Instantly share code, notes, and snippets.

@codemis
Last active December 20, 2015 00:19
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save codemis/6041247 to your computer and use it in GitHub Desktop.
Save codemis/6041247 to your computer and use it in GitHub Desktop.
Setup Ruby and Chef on Ubuntu 12.04 32 Bit. Run the following command with the current RAW file URL: "curl -l URL_FOR_RAW_FILE | bash"
#!/usr/bin/env bash
apt-get -y update
apt-get -y install build-essential libyaml-dev zlib1g-dev openssl libssl-dev libreadline-gplv2-dev
cd /tmp
wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p125.tar.gz
tar -xvzf ruby-1.9.3-p125.tar.gz
cd ruby-1.9.3-p125/
sudo ./configure --prefix=/usr/local
sudo make
sudo make install
gem install chef ruby-shadow --no-ri --no-rdoc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment