diff --git a/docs/about/queues.md b/docs/about/queues.md
index 1045b670..061dec10 100644
--- a/docs/about/queues.md
+++ b/docs/about/queues.md
@@ -4,7 +4,7 @@ SMU's high-performance computing (HPC) clusters use [SLURM](https://slurm.schedm
to schedule and manage resources.
:::{seealso}
-For examples and tips on SLURM usage, see [our SLURM documentation](../slurm/slurm.md).
+For examples and tips on SLURM usage, see [our SLURM documentation](../tutorials/slurm/slurm.md).
:::
:::{note}
diff --git a/docs/tutorials/slurm/slurm.md b/docs/tutorials/slurm/slurm.md
index 7b4c846f..2d53754c 100644
--- a/docs/tutorials/slurm/slurm.md
+++ b/docs/tutorials/slurm/slurm.md
@@ -36,25 +36,19 @@ the system.
#### SLURM commands
While there are a [multitude of SLURM
-commands](https://computing.llnl.gov/linux/slurm/documentation.html),
+commands](https://slurm.schedmd.com/quickstart.html),
here we'll focus on those applicable to running batch and interactive
jobs:
- `sinfo` \-- displays information about SLURM nodes and partitions
(queue types). A full list of options is available
- [here](https://computing.llnl.gov/linux/slurm/sinfo.html). The usage
+ [here](https://slurm.schedmd.com/sinfo.html). The usage
command (with the most-helpful optional arguments in brackets) is
- ```{=html}
-
- ```
``` bash
$ sinfo [-a] [-l] [-n
] [-p ] [-s] [-a] [-a] [-a]
```
- ```{=html}
-
- ```
where these options are:
- `-a` or `--all` \-- Display information about all partitions
@@ -71,34 +65,21 @@ jobs:
Examples:
- ```{=html}
-
- ```
``` bash
$ sinfo --long -p highmem # long output for all nodes allocated to the "highmem" partition
$ sinfo -s # summarizes output on all nodes on all partitions
```
- ```{=html}
-
- ```
-
- `squeue` \-- views information about jobs located in the SLURM
scheduling queue. A full list of options is available
- [here](https://computing.llnl.gov/linux/slurm/squeue.html). The
+ [here](https://slurm.schedmd.com/squeue.html). The
usage command (with the most-helpful optional arguments in brackets)
is
- ```{=html}
-
- ```
``` bash
$ squeue [-a] [-j] [-l] [-p] [--start] [-u]
```
- ```{=html}
-
- ```
where these options are:
- `-a` or `--all` \-- Display information about jobs and job steps
@@ -120,34 +101,22 @@ jobs:
Examples:
- ```{=html}
-
- ```
``` bash
$ squeue # all jobs
$ squeue -u rkalescky --start # anticipated start time of jobs
$ squeue --jobs 12345,12346,12348 # information on only jobs 12345, 12346 and 12348
```
- ```{=html}
-
- ```
- `sbatch` \-- submits a batch script to SLURM. A full list of options
is available
- [here](https://computing.llnl.gov/linux/slurm/sbatch.html). The
+ [here](https://slurm.schedmd.com/sbatch.html). The
usage command is
- ```{=html}
-
- ```
``` bash
$ sbatch [options] `