Skip to content
Snippets Groups Projects
Commit 4ae060e1 authored by Lukas Jelonek's avatar Lukas Jelonek
Browse files

Add some useful snippets for podman and slurm

parent 53a60f06
No related branches found
No related tags found
No related merge requests found
# Useful podman snippets
## Remove all currently not required resources
```bash
podman system prune -a
```
If your need more fine grained control replace `system` with `container|image|volume|...`.
# Useful slurm snippets
## Open an interactive shell on a cluster node
```bash
srun --pty -c 1 --mem=4G /bin/bash
```
## Get all node names
```bash
scontrol show nodes | awk '/NodeName/ {print $1}' | cut -d= -f2
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment