1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/sinfo.md

30 lines
667 B
Markdown
Raw Normal View History

2018-11-21 11:05:57 -06:00
# sinfo
> 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>.
2018-11-21 11:05:57 -06:00
- Show a quick summary overview of the cluster:
`sinfo {{[-s|--summarize]}}`
- View the detailed status of all partitions across the entire cluster:
2018-11-21 11:05:57 -06:00
`sinfo`
- View the detailed status of a specific partition:
2018-11-21 11:05:57 -06:00
`sinfo {{[-p|--partition]}} {{partition_name}}`
2018-11-21 11:05:57 -06:00
- View information about idle nodes:
2018-11-21 11:05:57 -06:00
`sinfo {{[-t|--states]}} {{idle}}`
2018-11-21 11:05:57 -06:00
- Summarise dead nodes:
2018-11-21 11:05:57 -06:00
`sinfo {{[-d|--dead]}}`
2018-11-21 11:05:57 -06:00
- List dead nodes and the reasons why:
2018-11-21 11:05:57 -06:00
`sinfo {{[-R|--list-reasons]}}`