User Tools

Site Tools


faq:list

This is an old revision of the document!


F.A.Q.

Frequently Asked Questions (most with answers!)

When I run a job on sun cluster, I see that the job progress (data) does not show in the output file promptly but it takes a while later to write out data, why?

The output files only get written to when the run completes; to get around this, redirect the output to a file. So the line in the moab script that runs a program looks like this:

mpirun -np $nproc -machinefile $PBS_NODEFILE ./elemental > output.txt

This only redirects the output, not the error messages; if you want both you'd put 2>&1 at the end of the line.

I want to run a specific software package. Can you install it for me please?

First please check whether it is not already installed. Most software is accessible via the modules system

module avail

will give you a list of most software installed on the system. If you want to search for a package named “XYZ”, the following command will do the trick:

module avail 2>&1 |grep XYZ

You can, of course, replace XYZ with any software package name.

/app/dokuwiki/data/attic/faq/list.1592819553.txt.gz · Last modified: 2021/12/09 16:42 (external edit)