Skip to content

How to setup Lido2 for erna

Jens Buss edited this page Apr 9, 2018 · 5 revisions

Lido2 seems to have no libdrmaa.so installed. Thus, you have to compile it yourself and store it in you home:

  1. download drmaa e.g. https://sourceforge.net/projects/pbspro-drmaa/

  2. build drmaa

mkdir -p /home/jbuss/.local/lib #for make install
# after unpacking in the liddrmaa folder
./configure --prefix=/home/jbuss/.local/lib
make
make install
  1. adapt .bashrc
export DRMAA_LIBRARY_PATH="/home/jbuss/.local/lib/lib/libdrmaa.so.1.0.19"
export DEFAULT_TEMP_DIR="/data/$USER/gridmap"
export USE_MEM_FREE=TRUE
ERROR_MAIL_RECIPIENT="[email protected]"
export SMTP_SERVER="lidong1.itmc.tu-dortmund.de"
export ERROR_MAIL_SENDER="[email protected]"
export SEND_ERROR_MAIL=TRUE

The common large filesystem on lido2 is mounted at /data

  1. download and install gridmap via pip
  2. download and install erna via pip
Clone this wiki locally