#! /bin/bash

# This script install mpich2 in a local node.  Proven to work at least for CENTOS

# Procedure: Run this script as an su.

wget http://www2.fizik.usm.my/configrepo/howto/mpich2/mpich2-1.4.1p1.tar
tar -xvf mpich2-1.4.1p1.tar
cd mpich2-1.4.1p1
./configure
make
make install
