Posts

Showing posts with the label QSUB

qsub tips: You need to know this about qsub

A PBS  server  treats all associated machines as  nodes  of one big cluster and uses  queues  to allocate their resources. Use the  pbsnodes  and  qstat  commands below to show the configuration in detail. Submit jobs with  qsub . Node info pbsnodes -a # show status of all nodes pbsnodes -a <node> # show status of specified node pbsnodes -l # list inactive nodes pbsnodelist # list status of all nodes (one per line) Queue info qstat -Q # show all queues qstat -Q <queue> # show status of specified queue qstat -f -Q <queue> # show full info for specified queue qstat -q # show all queues (alternative format) qstat -q <queue> # show status of specified queue (alt.) Job submission and monitoring qsub <jobscript> ...