diff --git a/pages/linux/sinfo.md b/pages/linux/sinfo.md index 1fbaff2ea..8a19136b9 100644 --- a/pages/linux/sinfo.md +++ b/pages/linux/sinfo.md @@ -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: . -- 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`