1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/linux/module.md
코드싸이 c369e30f73
linux/man: update Korean translation, linux/m*: add Korean translation (#14709)
* linux/man: update Korean translation

* linux/m*: add Korean translation
2024-11-09 13:27:56 +09:00

32 lines
597 B
Markdown

# module
> 사용자의 환경을 module 명령어로 수정.
> 더 많은 정보: <https://lmod.readthedocs.io/en/latest/010_user.html>.
- 사용 가능한 모듈 표시:
`module avail`
- 이름으로 모듈 검색:
`module avail {{모듈_이름}}`
- 모듈 로드:
`module load {{모듈_이름}}`
- 로드된 모듈 표시:
`module list`
- 특정 로드된 모듈 언로드:
`module unload {{모듈_이름}}`
- 모든 로드된 모듈 언로드:
`module purge`
- 사용자가 생성한 모듈 지정:
`module use {{경로/대상/모듈_파일1 경로/대상/모듈_파일2 ...}}`