Last active
February 17, 2018 11:15
-
-
Save adriaandens/5603569 to your computer and use it in GitHub Desktop.
Open-MPI bash script for installing Open-MPI on Knoppix 3.6.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget "http://www.open-mpi.org/software/ompi/v1.6/downloads/openmpi-1.6.4.tar.gz" | |
tar xzf openmpi-1.6.4.tar.gz | |
cd openmpi-1.6.4/ | |
./configure --prefix=/tmp/ --disable-vt | |
make | |
make install | |
PATH=$PATH:/tmp/bin | |
export PATH | |
mpirun -np 4 hostname | |
cd $KNOPPIX_HOME |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
t