1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00
tldr/pages.ko/linux/stress.md
코드싸이 16f2c3ed79
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>
2024-11-11 15:05:30 +09:00

617 B

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}}