Skip to content

Instantly share code, notes, and snippets.

@adriaandens
Last active February 17, 2018 11:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adriaandens/5603569 to your computer and use it in GitHub Desktop.
Save adriaandens/5603569 to your computer and use it in GitHub Desktop.
Open-MPI bash script for installing Open-MPI on Knoppix 3.6.
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
@jubabaghdad
Copy link

jubabaghdad commented Jul 20, 2017

t

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment