How to "Renice" a JAMS Linux Process

Follow

A template macro can be created that will be responsible for adjusting the process or process group priority of a Linux job using the "renice" command.

#!/bin/sh
renice -5
<<JAMS.Source>> 

It can also be done by simply adjusting the process from within the job source by using the command directly.

#!/bin/sh
renice -5
Have more questions? Submit a request

Comments