0

I'm looking for the SGE equivalent to PBS's "qstat -freenodes", basically I want to find all nodes that have nothing running. Suggestions?

user2796649
  • 1
  • 1
  • 1

2 Answers2

2

If you have an exclusive resource associated with the hosts you can use qhost:

qhost -l exclusive=TRUE

This should work even if you make the exclusive resource non-requestable.

William Hay
  • 2,148
  • 16
  • 20
0

It should be:

pbsnodes -l free
Simon H
  • 2,495
  • 4
  • 30
  • 38