sinfo: add link and improve examples (#3700)

client-spec/clarity
Starbeamrainbowlabs 2019-12-28 18:03:26 +00:00 committed by Iván
parent ef24c5ac38
commit 75d109448a
1 changed files with 16 additions and 10 deletions

View File

@ -1,23 +1,29 @@
# sinfo
> View information about SLURM nodes and partitions.
> View information about Slurm nodes and partitions.
> See also `squeue` and `sbatch`, which are also part of the Slurm workload manager.
> More information: <https://slurm.schedmd.com/sinfo.html>.
- View info about available partitions:
- Show a quick summary overview of the cluster:
`sinfo --summarize`
- View the detailed status of all partitions across the entire cluster:
`sinfo`
- View info about a specific partition:
- View the detailed status of a specific partition:
`sinfo -p {{partition}}`
`sinfo --partition {{partition_name}}`
- View info about available nodes:
- View information about idle nodes:
`sinfo -N`
`sinfo --states {{idle}}`
- View info about dead nodes:
- Summarise dead nodes:
`sinfo -d`
`sinfo --dead`
- View info about idle nodes:
- List dead nodes and the reasons why:
`sinfo -t {{idle}}`
`sinfo --list-reasons`