Workstation tips

Remote connection

Typically, work on the workstation is done from your notebook or remote desktop.

General procedure for the remote connection

Required software

Remote connection

Background job

Many jobs take a long time, so it is advisable to run the job in background and close the MobaXterm session.

To do this you need to use nohup and & commands following the general syntax:

nohup COMMAND &

e.g.:

nohup oeomega classic -commentEnergy true -ewindow 10 -maxconfs 1000000 -strict -in mol_sz.mol2 -out mol_oel.mol2 -prefix mol_oel -mpi_np 4 &

WARNING: background jobs ONLY works if you exit the MobaXterm session using CRTL d keys sequence. If you exit by clicking on the cross at the top right of the MobaXterm window or using OTHER METHODS, the JOB STOPS.

Some basic Linux commands

Basic syntax

The basic syntax of a Linux command is: command option variables

Working with the file tree

pwd

cp file1 file2

cp -rL source.file destination.file

man command

nvidia-smi

module

The setup of the environment can be done using the module tool installed by Aethia

Use

To setup an environment present in the modulefiles

module load modulefile

Checking the list of the modulefiles

module avail

Showing the list of loaded modules

module list

Setup of a new modulefile

Modulefiles are located in two directories

In such directories, some sub-directories contain the modulefiles that will be loaded with module tool.

New modulfiles added in such directories are immediately recognized by the module tool.

To use the correct syntax, it is better to copy an old file and modified it.

Warning: check the permissions of sub-directories (drwxr-xr-x) and modlefiles (-rw-r--r--)

Home