Reputation: 1
I'm looking for the SGE equivalent to PBS's "qstat -freenodes", basically I want to find all nodes that have nothing running. Suggestions?
Upvotes: 0
Views: 3162
Reputation: 2308
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.
Upvotes: 2