shnsplit: fix typo, systemctl: update Korean translation, linux/s*: add Korean translation (#14715)

* linux/s*: add Korean translation

* systemctl: update Korean translation

* Update pages.ko/linux/sqfscat.md

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

* Update pages.ko/linux/shar.md

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

* Update pages.ko/linux/sqfstar.md

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

* shnsplit: fix typo

* semanage: update Korean translation

---------

Co-authored-by: Chooooo <contact@choo.ooo>
This commit is contained in:
코드싸이
2024-11-11 15:05:30 +09:00
committed by GitHub
parent 7598cffb1a
commit 16f2c3ed79
127 changed files with 2777 additions and 17 deletions

20
pages.ko/linux/stress.md Normal file
View File

@@ -0,0 +1,20 @@
# stress
> CPU, 메모리 및 IO를 스트레스 테스트하는 Linux 시스템 도구.
> 더 많은 정보: <https://manned.org/stress>.
- CPU 스트레스 테스트를 위해 4개의 워커 생성:
`stress -c {{4}}`
- IO 스트레스 테스트를 위해 2개의 워커 생성하고 5초 후 타임아웃:
`stress -i {{2}} -t {{5}}`
- 메모리 스트레스 테스트를 위해 2개의 워커 생성 (각 워커는 256M 바이트 할당):
`stress -m {{2}} --vm-bytes {{256M}}`
- write()/unlink()를 반복하는 2개의 워커 생성 (각 워커는 1G 바이트 씀):
`stress -d {{2}} --hdd-bytes {{1GB}}`