9.6 Notes for OSCAR UsersLAM/MPI, MPICH, and HDF5 are installed as part of a standard OSCAR installation under the /opt directory to conform to the File System Hierarchy (FSH) standard (http://www.pathname.com/fhs/). Both MPICH and HDF5 have documentation subdirectories doc with additional information. OSCAR does not install MPE as part of the MPICH installation. If you want to use MPE, you'll need to go back and do a manual installation. Fortunately, this is not particularly difficult, but it can be a bit confusing. 9.6.1 Adding MPEFirst, use switcher to select your preferred version of MPI . Since you can't run LAM/MPI as root, MPICH is probably a better choice. For example, [root@amy root]# switcher mpi --listIf you had to change MPI, log out and back onto the system.Next, you'll need to retrieve and unpack a copy of MPICH. [root@amy root]# cp mpich.tar.gz /usr/local/src/usr/local/src is a reasonable location.If you don't have it on your system, you'll need to install Java to build the jumpshot. [root@amy src]# bunzip2 j2sdk-1.3.1-FCS-linux-i386.tar.bz2Again, /usr/local/src is a reasonable choice.Next, you need to set your PATH to include Java and set environmental variables for MPICH. [root@amy src]# export PATH=/usr/local/src/j2sdk1.3.1/bin:$PATH(Be sure these paths match your system.)Now you can change to the MPE directory and run configure, make, and make install. [root@amy src]# cd mpich-1.2.5.2/mpeYou should now have MPE on your system. If you used the same directories as used here, it will be in /usr/local/src/mpich-1.2.5.2/mpe. |