common/s*: add and update Korean translation (#14666)

* common/s*: add and update Korean translation

* scamper: fix typo

* Update pages.ko/common/simplehttpserver.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/common/steamcmd.md

Co-authored-by: Chooooo <contact@choo.ooo>

---------

Co-authored-by: Sebastiaan Speck <shem.speck@gmail.com>
Co-authored-by: Chooooo <contact@choo.ooo>
This commit is contained in:
코드싸이
2024-11-09 10:41:41 +09:00
committed by GitHub
parent 8058b46345
commit 4b5248236b
196 changed files with 4323 additions and 2 deletions

View File

@@ -0,0 +1,28 @@
# singularity
> Singularity 컨테이너 및 이미지 관리.
> 더 많은 정보: <https://singularity-docs.readthedocs.io/en/latest/#commands>.
- Sylabs Cloud에서 원격 이미지 다운로드:
`singularity pull --name {{이미지.sif}} {{library://godlovedc/funny/lolcow:latest}}`
- 최신 Singularity 이미지 형식으로 원격 이미지 재구축:
`singularity build {{이미지.sif}} {{docker://godlovedc/lolcow}}`
- 이미지에서 컨테이너를 시작하고 내부에서 셸 실행:
`singularity shell {{이미지.sif}}`
- 이미지에서 컨테이너를 시작하고 명령 실행:
`singularity exec {{이미지.sif}} {{명령}}`
- 이미지에서 컨테이너를 시작하고 내부 runscript 실행:
`singularity run {{이미지.sif}}`
- 레시피 파일에서 Singularity 이미지 생성:
`sudo singularity build {{이미지.sif}} {{레시피}}`