Skip to content

Instantly share code, notes, and snippets.

@rkmax
Forked from ramgole/install-r14b04.sh
Created December 14, 2011 20:59
Show Gist options
  • Star 14 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save rkmax/1478498 to your computer and use it in GitHub Desktop.
Save rkmax/1478498 to your computer and use it in GitHub Desktop.
Script to install Erlang R15B (tested on a fresh Ubuntu 11.10 install)
# You will need to make this file executable (chmod u+x) and run it with sudo
apt-get -y install build-essential m4 libncurses5-dev libssh-dev unixodbc-dev libgmp3-dev libwxgtk2.8-dev libglu1-mesa-dev fop xsltproc default-jdk
mkdir -p /src/erlang
cd /src/erlang
wget http://www.erlang.org/download/otp_src_R15B.tar.gz
tar -xvzf otp_src_R15B.tar.gz
chmod -R 777 otp_src_R15B
cd otp_src_R15B
./configure
make
make install
Copy link

ghost commented May 11, 2012

Thanks. Worked perfectly.

@rkmax
Copy link
Author

rkmax commented May 11, 2012

you're welcome

@adslaton
Copy link

adslaton commented Oct 1, 2012

This is awesome and works perfectly!

@prayagupa
Copy link

Works for ubuntu 12.10 as well. ,,/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment