add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

16
pages.zh/linux/srun.md Normal file
View File

@@ -0,0 +1,16 @@
# srun
> 创建一个交互式的 slurm 作业或连接到一个现有的作业。
> 更多信息:<https://slurm.schedmd.com/srun.html>。
- 提交一个基础的交互式作业:
`srun --pty /bin/bash`
- 提交一个具有不同属性的交互式作业:
`srun --ntasks-per-node={{num_cores}} --mem-per-cpu={{memory_MB}} --pty /bin/bash`
- 连接到一个正在运行作业的工作节点:
`srun --jobid={{job_id}} --pty /bin/bash`