mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
35 lines
706 B
Plaintext
35 lines
706 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# sinfo
|
|
|
|
> View information about Slurm nodes and partitions.
|
|
> See also: `squeue`, `sbatch`.
|
|
> More information: <https://slurm.schedmd.com/sinfo.html>.
|
|
|
|
- Show a quick summary overview of the cluster:
|
|
|
|
`sinfo {{[-s|--summarize]}}`
|
|
|
|
- View the detailed status of all partitions across the entire cluster:
|
|
|
|
`sinfo`
|
|
|
|
- View the detailed status of a specific partition:
|
|
|
|
`sinfo {{[-p|--partition]}} {{partition_name}}`
|
|
|
|
- View information about idle nodes:
|
|
|
|
`sinfo {{[-t|--states]}} {{idle}}`
|
|
|
|
- Summarise dead nodes:
|
|
|
|
`sinfo {{[-d|--dead]}}`
|
|
|
|
- List dead nodes and the reasons why:
|
|
|
|
`sinfo {{[-R|--list-reasons]}}`
|