Skip to content

Instantly share code, notes, and snippets.

@hdiedrich
Forked from rkmax/install-r15b.sh
Created June 12, 2012 13:59
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save hdiedrich/2917696 to your computer and use it in GitHub Desktop.
Save hdiedrich/2917696 to your computer and use it in GitHub Desktop.
Script to install Erlang R15B01 (tested on a fresh Ubuntu 12.04 install)
# You will need to make this file executable (chmod u+x) and run it with sudo
apt-get update
apt-get --fix-missing -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_R15B01.tar.gz
tar -xvzf otp_src_R15B01.tar.gz
chmod -R 777 otp_src_R15B01
cd otp_src_R15B01
./configure
make
make install
@Eonblast
Copy link

Changes:

  • 15B -> 15B01
  • I had trouble with libssh -> added apt-get update & --fix-missing

is chmod -R 777 necessary?

@mojo706
Copy link

mojo706 commented Sep 17, 2013

Thank you.

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