SCore Source Extraction and Installation


The source files are located on ftp://ftp.pccluster.org/pub/score-5.8,2/source/ or http://www.pccluster.org/score/dist/pub/score-5.8,2/source/

If you have an SCore Version 5.8,2 CD-ROM, you will find gziped tar files under the /mnt/cdrom/score.source/ directories.

  1. Source modules

    We assume that SCore patch and gziped source tar files will be downloaded under the /opt/score.work directory on the server host.

  2. JDK (Java Development Kit)

    If you want to install the jumpshot viewer tool provided by MPICH or the Omni OpenMP compiler, JDK (Java development kit) must be installed at the first. You may download the j2sdk-1.3.1-FCS-linux-i386.tar.bz2 file from http://www.blackdown.org/java-linux/mirrors.html

       # mkdir /usr/java
       # cd /usr/java
       # tar xIf /opt/score.work/j2sdk-1.3.1-FCS-linux-i386.tar.bz2
    

    Then please create /opt/score/score-src/adm/config/site file, the following entry must be added.

       JAVA_HOME = /usr/java/j2sdk1.3.1
       JAVA = $(JAVA_HOME)/bin/java
    

  3. SCore package installation

    If you want to compile and install all packages, issue the following commands:

        # mkdir -p /opt/score/
        # cd /opt/score
        # for tarfile in /opt/score.work/*.tar.gz
        # do
        # tar xzf $tarfile
        # done
        # cd score-src
    
    If you create site file:
        # ./configure --option=site
    Otherwith:
        # ./configure
    
        # make
        # /opt/score/install/setup -score_server
    
    If you want to install other directory, please specify --prefix=install_path option with configure command. Note that install_path must specified full path name, and you cannot use ~ metacharacter.

    If you don't want to compile and install some packages, please don't extract there packages tar files.


PCCC logo PC Cluster Consotium

$Id: download-source.html,v 1.18 2004/11/25 05:01:07 kameyama Exp $