sstat, scontrol: add page (#4689)

This commit is contained in:
Nikhil Reddy
2020-10-15 03:46:14 +05:30
committed by GitHub
parent 58af31d3a7
commit fbfe2c201a
2 changed files with 40 additions and 0 deletions

24
pages/linux/scontrol.md Normal file
View File

@@ -0,0 +1,24 @@
# scontrol
> View information about and modify jobs.
> More information: <https://slurm.schedmd.com/scontrol.html>.
- Show information for job:
`scontrol show job {{job_id}}`
- Suspend a comma-separated list of running jobs:
`scontrol suspend {{job_id}}`
- Resume a comma-separated list of suspended jobs:
`scontrol resume {{job_id}}`
- Hold a comma-separated list of queued jobs (Use `release` command to permit the jobs to be scheduled):
`scontrol hold {{job_id}}`
- Release a comma-separated list of suspended job:
`scontrol release {{job_id}}`