wget http://linuxcourse.rutgers.edu/lessons/HPC_1/download/openmpi-1.8.tar.gz
wget http://linuxcourse.rutgers.edu/lessons/HPC_1/download/configure.sh
tar -zxvf openmpi-1.8.tar.gz
cp configure.sh openmpi-1.8
cd openmpi-1.8
chmod 755 configure.sh
apt-get install g++ libc6-dev make
./configure.sh
make
make install
|