Ubuntu下Erlang R 14 Bの取り付け


最近Erlangを见ていないで、ずっとプロジェクトの関连するドキュメントを见て、今GSMネットワークに対して一定の理解があって、今回のプロジェクトは主に1つのVLR+MSCを実现して、详しくは先に言わないで、発表したばかりの最新版ErlangのUbuntuでのインストールを少し言います
# install libraries and tools 
sudo apt-get install libncurses5-dev m4 fop freeglut3-dev libwxgtk2.8-dev g++ 

# download source code 
wget http://erlang.org/download/otp_src_R14B.tar.gz
tar zxvf otp_src_R14B.tar.gz
cd otp_src_R14B/

# compile and install
./configure
make
sudo make install

# clean
cd ..
rm -r otp_src_R14B
rm otp_src_R14B.tar.gz