105
edits
TapasSarangi (talk | contribs) |
TapasSarangi (talk | contribs) No edit summary |
||
<nowiki>
# Only login0[1-6].hep.wisc.edu are accessible from outside networks
ssh login06.hep.wisc.edu
# From login06, login to osggrid01.hep.wisc.edu (this is the cvmfs writer)
ssh osggrid01.hep.wisc.edu
# Make sure your path is set to these
export PATH=/usr/bin:/bin:/usr/local/bin:/sbin:/usr/sbin
# The /scratch is where you would build the package before installing on cvmfs
# This prevents unnecessary build files getting into cvmfs
mkdirp -p /scratch/$USER
cd /scratch/$USER
mkdir -p clhep_build
cd clhep_build
# Create CVMFS install area where libraries and binaries will be installed
mkdir -p /cvmfs/lz.opensciencegrid.org/CLHEP/2.2.0.4
# Options with cmake
cmake -DCMAKE_INSTALL_PREFIX=/cvmfs/lz.opensciencegrid.org/CLHEP/2.2.0.4 ../2.2.0.4/CLHEP
make -j8
make test
make install
# At this point you should see all the libraries in /cvmfs
</nowiki>
|