HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

squeue — View the jobs queued in the SLURM scheduler. More information: <https://manned.org/squeue>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandqueuedsqueueclijobsview
linux

Problem

How to use the squeue command: View the jobs queued in the SLURM scheduler. More information: <https://manned.org/squeue>.

Solution

squeue — View the jobs queued in the SLURM scheduler. More information: <https://manned.org/squeue>.

View the queue:
squeue


View jobs queued by a specific user:
squeue {{[-u|--user]}} {{username}}


View the queue and refresh every 5 seconds:
squeue {{[-i|--iterate]}} {{5}}


View the queue with expected start times:
squeue --start

Code Snippets

View the queue

squeue

View jobs queued by a specific user

squeue {{[-u|--user]}} {{username}}

View the queue and refresh every 5 seconds

squeue {{[-i|--iterate]}} {{5}}

View the queue with expected start times

squeue --start

Context

tldr-pages: linux/squeue

Revisions (0)

No revisions yet.