suggestions about gap01

December 19 2019 16:54:11.

You can login on gap01.roma1.infn.it the first time via ssh
I will send you the temporary password via email

You will have to change the password at the first login
and then you can login again

You will find in your home directory a readme.sh file
you can source it or add it definitively to your bash profile, adding a line:

. ~/readme.sh

to your .bashrc

Once you have configured your environment you can login in from:
http://gap01.roma1.infn.it:8000/hub/login

You can access gap01, either via ssh or via the browser, only from the Department or using the VPN. Here you can find the instructions to setup the VPN.

Here's the content of readme.sh:

## configuration to use all the software installed on this machine
## add the lines you need to your .bashrc
## you can also source this file:
##$ source readme.sh
## to make this configuration permanent add in ~/.bashrc:
## . /home/soft/readme.sh

## nb: if you want to use python 3.6 instead of python 2.7
## comment out these lines and uncomment the following
## you can't edit this file, copy it to your home

# ###########################################################################
# #python
# . /opt/rh/python27/enable

# ##root
# export ROOTSYS=/home/soft/root-install-6.12.04/
# ##it is also possible to use the symbolik link /home/soft/root-install which points to the last root installed
# . $ROOTSYS/bin/thisroot.sh
# ## end python 2.7
# ###########################################################################

###########################################################################
##if you want to use python 3.6 uncomment the following:
##python
alias python='python3.6'
alias pip='pip3.6'

##root
export ROOTSYS=/home/soft/root-install-6.18.00-py3.6
. $ROOTSYS/bin/thisroot.sh
##end python 3.6
###########################################################################

##CMake
##the cmake installed with yum is very old, to use the newest cmake:
##export PATH=/home/soft/cmake-3.10.2/bin:$PATH
export PATH=/home/soft/cmake-3.14.5-install/bin:$PATH

###########################################################################

##CUDA
export PATH=/usr/local/cuda/bin:$PATH
export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH

###########################################################################

##Qt
export PATH=/home/soft/Qt/5.10.0/gcc_64/bin:$PATH
export LD_LIBRARY_PATH=/home/soft/Qt/5.10.0/gcc_64/lib:$LD_LIBRARY_PATH

###########################################################################

##Geant4
export G4INSTALL=/home/soft/geant4.10.05.p01-install
. $G4INSTALL/bin/geant4.sh

###########################################################################

##Intel® Software Development Tools
##VTune Amplifier (amplxe-gui)
#. /home/soft/intel/vtune_amplifier/amplxe-vars.sh
##Advisor (advixe-gui)
#. /home/soft/intel/advisor/advixe-vars.sh

###########################################################################

##Intel IPP
export IPP_ROOT=/home/soft/intel/compilers_and_libraries_2019.4.243/linux/ipp
. $IPP_ROOT/bin/ippvars.sh -arch intel64 -platform linux

###########################################################################

##MATLAB
export MATLAB_ROOT=/home/soft/MATLAB/R2018b
export PATH=$MATLAB_ROOT/bin:$PATH

###########################################################################

##JAGS
export JAGS_ROOT=/home/soft/JAGS-4.3.0-install
export PATH=$JAGS_ROOT/bin:$PATH
export LD_LIBRARY_PATH=$JAGS_ROOT/lib:$LD_LIBRARY_PATH
export PKG_CONFIG_PATH=$JAGS_ROOT/lib/pkgconfig:$PKG_CONFIG_PATH

###########################################################################

##Bayesian Analysis Toolkit (BAT)
#https://bat.mpp.mpg.de/
export BAT_ROOT=/home/soft/bat-install
export PATH=$BAT_ROOT/bin:$PATH
export LD_LIBRARY_PATH=$BAT_ROOT/lib:$LD_LIBRARY_PATH
export CPATH=$BAT_ROOT/include:$CPATH
export PKG_CONFIG_PATH=$BAT_ROOT/lib/pkgconfig:$PKG_CONFIG_PATH

###########################################################################

##Grassroots DICOM library (GDCM)
#http://gdcm.sourceforge.net/wiki/index.php
export GDCM_ROOT=/home/soft/gdcm-3.0.0-install
export LD_LIBRARY_PATH=$GDCM_ROOT/lib:$LD_LIBRARY_PATH

###########################################################################

# ##Open Source Computer Vision Library (OpenCV)
# #https://opencv.org
# export OPENCV_ROOT=/home/soft/opencv-3.4-install
# . $OPENCV_ROOT/bin/setup_vars_opencv3.sh
# export PATH=$OPENCV_ROOT/bin:$PATH

###########################################################################