Skip to content

Instantly share code, notes, and snippets.

View samof76's full-sized avatar
๐Ÿ’
Swinging branches

Samuel Vijaykumar M samof76

๐Ÿ’
Swinging branches
View GitHub Profile
@samof76
samof76 / erlrc
Created June 3, 2011 10:53
Erlang Install - Resource File
export ERL_HOME=/opt/erlang/current
export PATH=$ERL_HOME/bin:$PATH
export LD_LIBRARY_PATH=$ERL_HOME/lib:$LD_LIBRARY_PATH
@samof76
samof76 / erlrc.sh
Created June 3, 2011 10:51
Erlang Install - Setup environment variables
$ export ERL_HOME=/opt/erlang/current
$ export PATH=$ERL_HOME/bin:$PATH
$ export LD_LIBRARY_PATH=$ERL_HOME/lib:$LD_LIBRARY_PATH
@samof76
samof76 / link.sh
Created June 3, 2011 10:48
Erlang Install - Link Directory creation
@samof76
samof76 / install.sh
Created June 3, 2011 10:46
Erlang Install - Install
$ mkdir R14B02
$ cd otp_src_R14B02
$ ./configure --prefix=/opt/erlang/R14B02
$ make ; make instal
@samof76
samof76 / extract.sh
Created June 3, 2011 10:44
Erlang Install - Extract Tarball
$ tar -xzvf otp_src_R14B02.tar.gz
@samof76
samof76 / downloadtarball.sh
Created June 3, 2011 10:42
Erlang Install - Download Tarball
$ cd /opt/erlang
$ wget http://www.erlang.org/download/otp_src_R14B02.tar.gz
@samof76
samof76 / workingdircreate.sh
Created June 3, 2011 10:41
Erlang Install - Creation of Working directory
$ sudo mkdir -p /opt/erlang
$ sudo chown sam:sam -R /opt/erlang
@samof76
samof76 / createdir.sh
Created June 3, 2011 10:29
Erlang Install Steps
sudo mkdir /opt/erlang
sudo chown sam:sam -R /opt/erlang