Tags:
create new tag
view all tags

NOTE: Installations are best done directly on the NFS server t3nfs01. They must be done as user cmssgm!!!

CMSSW installation on the Tier-3

Central CMS documentation: https://twiki.cern.ch/twiki/bin/view/CMSPublic/SDTCMSSW_aptinstaller

Identify the SCRAM_ARCH environment name

In order to run the correct installer, you need to find out under which SCRAM architecture, var SCRAM_ARCH, the CMSSW version you are interested in has been packaged. Go to https://cmssdt.cern.ch/SDT/cgi-bin/ReleasesXML to find out about this.

SL6 installations

One-time initialization

Login as cmssgm@t3ui[11-20].psi.ch ; you need to know the value of SCRAM_ARCH, you'll find it on https://cmssdt.cern.ch/SDT/cgi-bin/ReleasesXML ( or by looking to http://cmsrep.cern.ch/cms/cpt/Software/download/cms/apt/ ) ; then initialize the SCRAM architecture, e.g. :
[cmssgm@t3ui11 cms]$ SCRAM_ARCH=slc6_amd64_gcc472
[cmssgm@t3ui11 cms]$ sh -x $VO_CMS_SW_DIR/bootstrap.sh setup -path $VO_CMS_SW_DIR -arch $SCRAM_ARCH >& $VO_CMS_SW_DIR/bootstrap_$SCRAM_ARCH.log 
... be patient it will take mins and mins ...

Installation of a release

Login as cmssgm@t3ui[11-20].psi.ch ; you need to know the value of SCRAM_ARCH ( look CmsSwInstallation#One_time_initialization ) ; then to install a release e.g. :
[cmssgm@t3ui11 cms]$ SCRAM_ARCH=slc6_amd64_gcc472
[cmssgm@t3ui11 cms]$ source $VO_CMS_SW_DIR/$SCRAM_ARCH/external/apt/*/etc/profile.d/init.sh
[cmssgm@t3ui11 cms]$ apt-get update
Get:1 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc6_amd64_gcc472 release [731B]
Fetched 731B in 0s (11.3kB/s)
Hit http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc6_amd64_gcc472/cms pkglist
Hit http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc6_amd64_gcc472/cms release
Hit http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc6_amd64_gcc472/lcg pkglist
Hit http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc6_amd64_gcc472/lcg release
Hit http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc6_amd64_gcc472/external pkglist
Hit http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc6_amd64_gcc472/external release
Reading Package Lists... Done
Building Dependency Tree... Done
Del cms+cms-common+1.0-1-1108.slc6 amd64 [14.5kB]
[cmssgm@t3ui11 cms]$ apt-cache search CMSSW
cms+cmssw+CMSSW_5_3_11 - CMS Experiment package SpecChecksum:91dfcb2dc76366ccc8fa3ed0ecc9cd7d
cms+cmssw+CMSSW_5_3_12 - CMS Experiment package SpecChecksum:d4a46056ab0117ea39789c8c626c766f
cms+cmssw+CMSSW_5_3_13 - CMS Experiment package SpecChecksum:06c4c274acea0e0155ee98784a453fd9
cms+cmssw+CMSSW_5_3_14 - CMS Experiment package SpecChecksum:4d19df5c6242c72f18f09cbb59c228ab
...
[cmssgm@t3ui11 cms]$ apt-get install "cms+cmssw+CMSSW_5_3_19"
Reading Package Lists... Done
Building Dependency Tree... Done
The following extra packages will be installed:
  cms+cmssw-tool-conf+26.0-cms17 cms+cmsswdata+27-cms13 cms+coral+CORAL_2_3_21-cms40 cms+coral-tool-conf+2.1-cms22 cms+das-client+1.11.7-cms
  cms+data-CalibTracker-SiPixelESProducers+V01-01-01-cms cms+data-DetectorDescription-Schema+V02-02-01-cms cms+data-FastSimulation-MaterialEffects+V04-02-08-cms
  cms+data-FastSimulation-PileUpProducer+V04-05-18-cms cms+data-Fireworks-Geometry+V06-13-04-cms cms+data-GeneratorInterface-ReggeGribovPartonMCInterface+V00-00-02-cms
...
... be patient it will take mins and mins ...

SL5 installations

One-time initialization

The SW area must be initialized only once, e.g. when the architecture is changed. If you just need to install a release, go to next subsection.

The example here is for initializing a SW area with architecture slc5_amd64_gcc462.

First, go on a proper machine (e.g. t3ui02) and become the cmssgm user. Then, execute this command list:

export VO_CMS_SW_DIR=/swshare/cms
export LANG="C"
wget -O $VO_CMS_SW_DIR/bootstrap.sh http://cmsrep.cern.ch/cmssw/cms/bootstrap.sh
mkdir /tmp/$USER
export SCRAM_ARCH=slc5_amd64_gcc462
sh -x $VO_CMS_SW_DIR/bootstrap.sh setup -path $VO_CMS_SW_DIR -arch $SCRAM_ARCH >& $VO_CMS_SW_DIR/bootstrap_$SCRAM_ARCH.log 
source $VO_CMS_SW_DIR/$SCRAM_ARCH/external/apt/*/etc/profile.d/init.sh

The last step is to install some compatibility packages, identifiable by the name *fake*. You can find them by doing:

 apt-cache pkgnames | grep fake

and install them by doing:

apt-get install <fake-package>

Finally, set up an initialization script to be sourced each time you want to install a release, preferably under the name SL5-CMSSW-installer-env-${SCRAM_ARCH}.sh. The file looks like this:

export VO_CMS_SW_DIR=/swshare/cms
export SCRAM_ARCH=slc5_amd64_gcc462
export LANG="C"

if test ! -d "$VO_CMS_SW_DIR"; then
   echo "No such dir VO_CMS_SW_DIR=$VO_CMS_SW_DIR"
   return 1
fi

# As a safety precaution the following will fail for a completely new
# initialization
APT_VERSION=$(ls -tr $VO_CMS_SW_DIR/$SCRAM_ARCH/external/apt/|tail -1)
APT_DIR=$VO_CMS_SW_DIR/$SCRAM_ARCH/external/apt/$APT_VERSION
if test ! -d "$APT_DIR" -o x"$APT_VERSION" = x; then
   echo "Error: apt directory does not exist $APT_DIR" >& 2
   return 1
fi

source $VO_CMS_SW_DIR/$SCRAM_ARCH/external/apt/$APT_VERSION/etc/profile.d/init.sh
apt-get update
#apt-cache search 'cms\+cmssw\+CMSSW'

echo "apt environment is set up. Install packages using"
echo "       apt-get install <packagename>"

Installation of a release

  1. log into a SL5 machine and su - to the cms software manager
    su - cmssgm 
  2. run ls -l to be aware of these links:
    lrwxrwxrwx 1 cmssgm cms      44 Feb 21 13:49 CMSSW_5 -> SL5-CMSSW-installer-env-slc5_amd64_gcc462.sh
    lrwxrwxrwx 1 cmssgm cms      44 Feb 21 12:28 CMSSW_6 -> SL5-CMSSW-installer-env-slc5_amd64_gcc472.sh
    lrwxrwxrwx 1 cmssgm cms      44 Feb 21 12:28 CMSSW_7 -> SL5-CMSSW-installer-env-slc5_amd64_gcc481.sh
    
  3. all the necessary commands to set up the correct APT environment are run by our install script that needs to be sourced (64 bits releases)
    source SL5-CMSSW-installer-env-ENV.sh
    [cmssgm@t3ui02 ~]$  source SL5-CMSSW-installer-env-slc5_amd64_gcc481.sh
    Get:1 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc5_amd64_gcc481 release [727B]
    Fetched 727B in 0s (2417B/s) 
    Hit http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc5_amd64_gcc481/cms pkglist
    Hit http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc5_amd64_gcc481/cms release
    Hit http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc5_amd64_gcc481/lcg pkglist
    Hit http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc5_amd64_gcc481/lcg release
    Hit http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc5_amd64_gcc481/external pkglist
    Hit http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc5_amd64_gcc481/external release
    Reading Package Lists... Done
    Building Dependency Tree... Done
    Del cms+coral+CORAL 2 [3120kB]
    Del cms+cmssw-tool-conf+29.0-cms3-1-1.slc5 amd64 [45.2kB]
    Del cms+cmssw+CMSSW 7 [337MB]
    apt environment is set up. Install packages using
           apt-get install 
    
  4. replace ENV with the environment (SCRAM_ARCH) that should be used to install the release
  5. if the apt commands are stuck this is most likely due to old db files in cd /swshare/cms/ENV/var/lib/rpm; delete them and proceed
  6. To look for the needed release:
     apt-cache search [DESIDERED_CMSSW] 
  7. The script will list the available releases. Install the desired release using
    apt-get install package-name 

The script basically runs the sequence of commands lined out in the instructions from the CMS Twiki.


Example CMSSW installation on PSI Tier-3 , SL4 architecture - OUTDATED

Testing for CMSSW installation on PSI SL4 and intel x64 architecture.

Linux t3wn01 2.6.9-67.0.15.ELsmp #1 SMP Wed May 7 03:58:44 CDT 2008 x86_64 x86_64 x86_64 GNU/Linux
Scientific Linux SL release 4.6 (Beryllium)

Following the instructions from the CMS Twiki.

Installation of slc4_amd64_gcc345 RPMs failed, even though this is the architecture type recommended (these are the only available 64bit builds, but they were reported to also work on intel machines). Anyways, I only found a very limited amount of the available CMSSW versions for this arch.

Decided to use the ia32 RPMs as recommended on several pages. All compatibility libraries seem to be installed on our PSI SL4 distribution.

Needed to install by hand libGLU.so

yum install xorg-x11-Mesa-libGLU.x86_64

I got a working installation for this example (as user cmssgm):

export VO_CMS_SW_DIR=/opt/experiment-software/cms
export SCRAM_ARCH=slc4_ia32_gcc345
export LANG="C"
wget -O $VO_CMS_SW_DIR/bootstrap.sh http://cmsrep.cern.ch/cmssw/cms/bootstrap.sh
sh -x $VO_CMS_SW_DIR/bootstrap.sh setup -path $VO_CMS_SW_DIR -arch $SCRAM_ARCH >& $VO_CMS_SW_DIR/bootstrap_$SCRAM_ARCH.log
source /opt/experiment-software/cms/slc4_amd64_gcc345/external/apt/0.5.15lorg3.2-CMS19c/etc/profile.d/init.sh
pwd
source /opt/experiment-software/cms/slc4_ia32_gcc345/external/apt/0.5.15lorg3.2-cms3/etc/profile.d/init.sh
apt-get update
apt-cache search cmssw
apt-get install cms+cmssw+CMSSW_1_8_4

The installation of CMSSW_1_8_4 and its dependencies required 6.7 GB.


CMSSW installation on t3ui01 - OUTDATED

I (Zhiling) installed CMSSW_2_0_7 on t3ui01 basically following Derek's recipe above:

I reinstalled CMSSW_2_0_7 on new path: /swshare/cms on August 21, 08.

[cmssgm@t3ui01 mnt]$ export VO_CMS_SW_DIR=/swshare/cms/
[cmssgm@t3ui01 mnt]$ export SCRAM_ARCH=slc4_ia32_gcc345
[cmssgm@t3ui01 mnt]$ export LANG="C"
[cmssgm@t3ui01 mnt]$ wget -O $VO_CMS_SW_DIR/bootstrap.sh http://cmsrep.cern.ch/cmssw/cms/bootstrap.sh
........
[cmssgm@t3ui01 mnt]$ cd swshare/
[cmssgm@t3ui01 swshare]$ cd cms
[cmssgm@t3ui01 cms]$ ls
bootstrap.sh
[cmssgm@t3ui01 cms]$ sh -x $VO_CMS_SW_DIR/bootstrap.sh setup -path $VO_CMS_SW_DIR -arch $SCRAM_ARCH >& $VO_CMS_SW_DIR/bootstrap_$SCRAM_ARCH.log
[cmssgm@t3ui01 cms]$ mkdir /tmp/$USER
[cmssgm@t3ui01 cms]$ source /swshare/cms/slc4_ia32_gcc345/external/apt/0.5.15lorg3.2-cms5/etc/profile.d/init.sh              
........
[cmssgm@t3ui01 cms]$ apt-get update
........
[cmssgm@t3ui01 cms]$ apt-cache search cmssw
[cmssgm@t3ui01 cms]$ apt-get install cms+cmssw+CMSSW_2_0_7
........
0 upgraded, 109 newly installed, 0 removed and 0 not upgraded.
Need to get 2196MB of archives.
After unpacking 4751MB of additional disk space will be used.
.........
Done.
[cmssgm@t3ui01 cms]$ ls
bin  bootstrap.sh  bootstrap_slc4_ia32_gcc345.log  cmsset_default.csh  cmsset_default.sh  common  mnt  slc4_ia32_gcc345  tmp  var
[cmssgm@t3ui01 cms]$ echo $VO_CMS_SW_DIR
/swshare/cms
[cmssgm@t3ui01 cms]$ source $VO_CMS_SW_DIR/cmsset_default.sh
[cmssgm@t3ui01 cms]$ scramv1 list CMSSW
Listing installed projects....
--------------------------------------------------------------------------------
| Project Name  | Project Version          | Project Location                  |
--------------------------------------------------------------------------------
  CMSSW           CMSSW_2_0_7                
                                         --> /mnt/swshare/cms/slc4_ia32_gcc345/cms/cmssw/CMSSW_2_0_7
Projects available for platform >> slc4_ia32_gcc345 <<

Testing the installation of CMSSW_2_0_7 OUTDATED

*I try to test the installation of CMSSW_2_0_7 on t3ui01 with a set of example analysis codes. During test, there were some 32bit libs were missing during building. I have to install them manually. I am afraid more missing libs will come into view on further test or extended use.

[cmssgm@t3ui01 tmp]$ cd ~
[cmssgm@t3ui01 ~]$ ls
[cmssgm@t3ui01 ~]$ mkdir Tutorial
[cmssgm@t3ui01 ~]$ cd Tutorial/
[cmssgm@t3ui01 Tutorial]$ scramv1 project CMSSW CMSSW_2_0_7
[cmssgm@t3ui01 Tutorial]$ cd CMSSW_2_0_7/s
share/ src/   
[cmssgm@t3ui01 Tutorial]$ cd CMSSW_2_0_7/s
share/ src/   
[cmssgm@t3ui01 Tutorial]$ cd CMSSW_2_0_7/src/
[cmssgm@t3ui01 src]$ eval `scramv1 runtime -sh`
[cmssgm@t3ui01 src]$ wget http://www.phys.ethz.ch/~zhiling/QCDAnalysis.tar.bz2
........
[cmssgm@t3ui01 src]$ tar -xjf QCDAnalysis.tar.bz2 
[cmssgm@t3ui01 src]$ cd QCDAnalysis/UEAnalysis/src
[cmssgm@t3ui01 src]$ scramv1 b
[cmssgm@t3ui01 src]$ scramv1 b
........
>> Building shared library tmp/slc4_ia32_gcc345/src/QCDAnalysis/UEAnalysis/src/QCDAnalysisUEAnalysis/libQCDAnalysisUEAnalysis.so
/usr/bin/ld: crti.o: No such file: No such file or directory
collect2: ld returned 1 exit status
gmake: *** [tmp/slc4_ia32_gcc345/src/QCDAnalysis/UEAnalysis/src/QCDAnalysisUEAnalysis/libQCDAnalysisUEAnalysis.so] Error 1

To solve above problem

[root@t3ui01 ~]# yum install glibc-devel.i386
........
Installed: glibc-devel.i386 0:2.3.4-2.39
Complete!

There were two more missing libs were reported during building analysis again. To solve the problem:

yum install freetype.i386
yum install freetype-devel.i386

Trouble Shooting OUTDATED

  • Got errors when install new CMSSW release
ERROR: Tools cache file for release area "/swshare/cms/slc4_ia32_gcc345/cms/seal/SEAL_1_9_4-cms18" is not available.
SealPluginRefresh: error while loading shared libraries: liblcg_PluginManager.so: cannot open shared object file: No such file or directory

Show Details Hide Details

[cmssgm@t3ui01 cms]$ apt-get install cms+cmssw+CMSSW_2_1_6
Reading Package Lists... Done
Building Dependency Tree... Done
The following extra packages will be installed:
  cms+cmssw-tool-conf+7.1-cms cms+cmsswdata+20-cms14 cms+coral+CORAL_1_9_7-cms cms+coral-tool-conf+1.0-cms19 cms+data-CondCore-SQLiteData+24
  cms+data-FastSimulation-PileUpProducer+22 cms+data-MagneticField-Interpolation+22 cms+data-RecoParticleFlow-PFTracking+22-cms cms+pool+POOL_2_7_3-cms18
  cms+pool-tool-conf+1.0-cms19 cms+seal+SEAL_1_9_4-cms18 cms+seal-tool-conf+1.0-cms15 external+dpm+1.6.7.4-cms external+frontier_client+2.7.8 external+geant4+9.1.p02-cms
  external+google-perftools+0.98-cms external+gsl+1.10-cms external+hector+1_3_2-cms13 external+hepmc+2.03.06 external+herwigpp+2.2.1 external+libhepml+0.2.1-cms
  external+mcdb+1.0.2-cms2 external+millepede+2.0-cms external+openldap+2.3.39 external+photos+215.5 external+py2-zsi+2.0-cms external+pythia6+416 external+pythia8+107-cms2
  external+python-ldap+2.3.5 external+sherpa+1.1.1 external+tauola+27.121.5 external+thepeg+1.3.0 external+tkonlinesw+0.3-cms4 external+xdaq+03.14.00-cms3 lcg+SCRAMV1+V2_0_5
  lcg+root+5.18.00a-cms12
The following NEW packages will be installed:
  cms+cmssw+CMSSW_2_1_6 cms+cmssw-tool-conf+7.1-cms cms+cmsswdata+20-cms14 cms+coral+CORAL_1_9_7-cms cms+coral-tool-conf+1.0-cms19 cms+data-CondCore-SQLiteData+24
  cms+data-FastSimulation-PileUpProducer+22 cms+data-MagneticField-Interpolation+22 cms+data-RecoParticleFlow-PFTracking+22-cms cms+pool+POOL_2_7_3-cms18
  cms+pool-tool-conf+1.0-cms19 cms+seal+SEAL_1_9_4-cms18 cms+seal-tool-conf+1.0-cms15 external+dpm+1.6.7.4-cms external+frontier_client+2.7.8 external+geant4+9.1.p02-cms
  external+google-perftools+0.98-cms external+gsl+1.10-cms external+hector+1_3_2-cms13 external+hepmc+2.03.06 external+herwigpp+2.2.1 external+libhepml+0.2.1-cms
  external+mcdb+1.0.2-cms2 external+millepede+2.0-cms external+openldap+2.3.39 external+photos+215.5 external+py2-zsi+2.0-cms external+pythia6+416 external+pythia8+107-cms2
  external+python-ldap+2.3.5 external+sherpa+1.1.1 external+tauola+27.121.5 external+thepeg+1.3.0 external+tkonlinesw+0.3-cms4 external+xdaq+03.14.00-cms3 lcg+SCRAMV1+V2_0_5
  lcg+root+5.18.00a-cms12
0 upgraded, 37 newly installed, 0 removed and 1 not upgraded.
Need to get 2104MB of archives.
After unpacking 3821MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+gsl+1.10-cms 1-1 [4338kB]
Get:2 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/lcg lcg+root+5.18.00a-cms12 1-1 [37.8MB]
Get:3 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/cms cms+seal-tool-conf+1.0-cms15 1-1 [15.4kB]
Get:4 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/lcg lcg+SCRAMV1+V2_0_5 1-1 [91.7kB]
Get:5 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/cms cms+seal+SEAL_1_9_4-cms18 1-1 [5116kB]
Get:6 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+frontier_client+2.7.8 1-1 [197kB]
Get:7 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/cms cms+coral-tool-conf+1.0-cms19 1-1 [16.5kB]
Get:8 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+xdaq+03.14.00-cms3 1-1 [76.4MB]
Get:9 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/cms cms+coral+CORAL_1_9_7-cms 1-1 [3410kB]                                                       
Get:10 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/cms cms+pool-tool-conf+1.0-cms19 1-1 [16.9kB]                                                   
Get:11 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/cms cms+pool+POOL_2_7_3-cms18 1-1 [4097kB]                                                      
Get:12 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+thepeg+1.3.0 1-1 [22.5MB]                                                     
Get:13 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/cms cms+data-CondCore-SQLiteData+24 1-1 [11.7MB]                                                
Get:14 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/cms cms+data-FastSimulation-PileUpProducer+22 1-1 [1427MB]                                      
Get:15 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/cms cms+data-MagneticField-Interpolation+22 1-1 [25.8MB]                                        
Get:16 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/cms cms+data-RecoParticleFlow-PFTracking+22-cms 1-1 [3782kB]                                    
Get:17 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/cms cms+cmsswdata+20-cms14 1-1 [5261B]                                                          
Get:18 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+dpm+1.6.7.4-cms 1-1 [440kB]                                                   
Get:19 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+geant4+9.1.p02-cms 1-1 [90.6MB]                                               
Get:20 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+google-perftools+0.98-cms 1-1 [2040kB]                                        
Get:21 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+hector+1_3_2-cms13 1-1 [1726kB]                                               
Get:22 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+hepmc+2.03.06 1-1 [3846kB]                                                    
Get:23 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+herwigpp+2.2.1 1-1 [10.5MB]                                                   
Get:24 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+libhepml+0.2.1-cms 1-1 [113kB]                                                
Get:25 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+mcdb+1.0.2-cms2 1-1 [135kB]                                                   
Get:26 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+millepede+2.0-cms 1-1 [596kB]                                                 
Get:27 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+openldap+2.3.39 1-1 [2991kB]                                                  
Get:28 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+photos+215.5 1-1 [63.8kB]                                                     
Get:29 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+py2-zsi+2.0-cms 1-1 [381kB]                                                   
Get:30 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+pythia6+416 1-1 [1928kB]                                                      
Get:31 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+pythia8+107-cms2 1-1 [2039kB]                                                 
Get:32 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+python-ldap+2.3.5 1-1 [156kB]                                                 
Get:33 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+sherpa+1.1.1 1-1 [38.0MB]                                                     
Get:34 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+tauola+27.121.5 1-1 [294kB]                                                   
Get:35 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/external external+tkonlinesw+0.3-cms4 1-1 [5646kB]                                              
Get:36 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/cms cms+cmssw-tool-conf+7.1-cms 1-1 [29.0kB]                                                    
Get:37 http://cmsrep.cern.ch cms/cpt/Software/download/cms/apt/slc4_ia32_gcc345/cms cms+cmssw+CMSSW_2_1_6 1-1 [320MB]                                                           
Fetched 2104MB in 4m21s (8049kB/s)                                                                                                                                              
Executing RPM (-Uvh)...
Preparing...                ########################################### [100%]
   1:external+gsl+1.10-cms  ########################################### [  3%]
   2:lcg+SCRAMV1+V2_0_5     ########################################### [  5%]
   3:lcg+root+5.18.00a-cms12########################################### [  8%]
   4:external+xdaq+03.14.00-########################################### [ 11%]
   5:external+frontier_clien########################################### [ 14%]
   6:cms+seal-tool-conf+1.0-########################################### [ 16%]
   7:cms+data-RecoParticleFl########################################### [ 19%]
   8:cms+data-MagneticField-########################################### [ 22%]
   9:cms+data-FastSimulation########################################### [ 24%]
  10:cms+data-CondCore-SQLit########################################### [ 27%]
  11:cms+seal+SEAL_1_9_4-cms########################################### [ 30%]
  12:external+hepmc+2.03.06 ########################################### [ 32%]
  13:external+pythia6+416   ########################################### [ 35%]
  14:external+thepeg+1.3.0  ########################################### [ 38%]
  15:external+openldap+2.3.3########################################### [ 41%]
  16:external+python-ldap+2.########################################### [ 43%]
  17:external+herwigpp+2.2.1########################################### [ 46%]
  18:external+pythia8+107-cm########################################### [ 49%]
  19:external+tauola+27.121.########################################### [ 51%]
  20:external+sherpa+1.1.1  ########################################### [ 54%]
  21:external+mcdb+1.0.2-cms########################################### [ 57%]
  22:external+tkonlinesw+0.3########################################### [ 59%]
  23:external+hector+1_3_2-c########################################### [ 62%]
  24:external+photos+215.5  ########################################### [ 65%]
  25:external+millepede+2.0-########################################### [ 68%]
  26:external+libhepml+0.2.1########################################### [ 70%]
  27:external+google-perftoo########################################### [ 73%]
  28:external+geant4+9.1.p02########################################### [ 76%]
  29:external+dpm+1.6.7.4-cm########################################### [ 78%]
  30:cms+coral-tool-conf+1.0########################################### [ 81%]
  31:cms+cmsswdata+20-cms14 ########################################### [ 84%]
  32:external+py2-zsi+2.0-cm########################################### [ 86%]
  33:cms+coral+CORAL_1_9_7-c########################################### [ 89%]
ERROR: Tools cache file for release area "/swshare/cms/slc4_ia32_gcc345/cms/seal/SEAL_1_9_4-cms18" is not available.
SealPluginRefresh: error while loading shared libraries: liblcg_PluginManager.so: cannot open shared object file: No such file or directory
  34:cms+pool-tool-conf+1.0-########################################### [ 92%]
  35:cms+pool+POOL_2_7_3-cms########################################### [ 95%]
ERROR: Tools cache file for release area "/swshare/cms/slc4_ia32_gcc345/cms/seal/SEAL_1_9_4-cms18" is not available.
ERROR: Tools cache file for release area "/swshare/cms/slc4_ia32_gcc345/cms/coral/CORAL_1_9_7-cms" is not available.
SealPluginRefresh: error while loading shared libraries: liblcg_PluginManager.so: cannot open shared object file: No such file or directory
  36:cms+cmssw-tool-conf+7.1########################################### [ 97%]
  37:cms+cmssw+CMSSW_2_1_6  ########################################### [100%]
ERROR: Tools cache file for release area "/swshare/cms/slc4_ia32_gcc345/cms/seal/SEAL_1_9_4-cms18" is not available.
ERROR: Tools cache file for release area "/swshare/cms/slc4_ia32_gcc345/cms/coral/CORAL_1_9_7-cms" is not available.
ERROR: Tools cache file for release area "/swshare/cms/slc4_ia32_gcc345/cms/pool/POOL_2_7_3-cms18" is not available.
SealPluginRefresh: error while loading shared libraries: liblcg_PluginManager.so: cannot open shared object file: No such file or directory
Done.
Solution: Deleted old $VO_CMS_SW_DIR/bootstrap.sh and download a new one, then follow full steps on https://twiki.cern.ch/twiki/bin/view/CMS/CMSSW_aptinstaller Although the installation progress was not fully completed, new CMSSW which you installed right before is still installed by apt. Using "apt-get reinstall cms+cmssw+CMSSW_X_Y_Z" to reinstall it.

-- DerekFeichtinger - 17 Jul 2008

Topic attachments
I Attachment History Action Size Date Who Comment
Texttxt CMSSW_Installation_on_t3ui01.txt r1 manage 67.6 K 2008-08-20 - 23:01 ZhilingChen Terminal output during CMSSW Installation on t3ui01
Edit | Attach | Watch | Print version | History: r22 < r21 < r20 < r19 < r18 | Backlinks | Raw View | Raw edit | More topic actions
Topic revision: r22 - 2014-12-15 - FabioMartinelli
 
This site is powered by the TWiki collaboration platform Powered by Perl This site is powered by the TWiki collaboration platformCopyright © 2008-2024 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback