...
How does one make use of nodes with \ /scratch2 storage?
If you submit a job with the following request, LSF will place jobs a job on nodes with \ /scratch2 partitions.
For example, to request at least 40gig of storage for a job to run in the long_public queue try:
-bash_3.2$ bsub -q long_public -R "scratch2 > 40000000" ./your_jobname
Note the storage argument is in kilobytes.
...