Skip to content

Instantly share code, notes, and snippets.

@burinov
Forked from chaos-ad/install.sh
Last active December 10, 2015 15:08
Show Gist options
  • Save burinov/4452163 to your computer and use it in GitHub Desktop.
Save burinov/4452163 to your computer and use it in GitHub Desktop.
#!/bin/bash
# installing erlang on ubuntu's
sudo apt-get install build-essential libncurses5-dev openssl libssl-dev
sudo mkdir -p /opt/erlang/
curl -O https://raw.github.com/spawngrid/kerl/master/kerl && chmod a+x kerl
sudo mv kerl /opt/erlang/
sudo ln -s /opt/erlang/kerl /usr/local/bin/kerl
kerl update releases
kerl build R15B02 R15B02
sudo kerl install R15B02 /opt/erlang/R15B02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment