cryptsetup-luksformat: fix typo, linux/c*: add and update Korean translation (#14682)
* linux/c*: add and update Korean translation * cryptsetup-luksformat: fix typo
This commit is contained in:
28
pages.ko/linux/cpulimit.md
Normal file
28
pages.ko/linux/cpulimit.md
Normal file
@@ -0,0 +1,28 @@
|
||||
# cpulimit
|
||||
|
||||
> 다른 프로세스의 CPU 사용을 제한하는 도구.
|
||||
> 더 많은 정보: <https://cpulimit.sourceforge.net/>.
|
||||
|
||||
- PID 1234인 기존 프로세스의 CPU 사용을 25%로 제한:
|
||||
|
||||
`cpulimit --pid {{1234}} --limit {{25%}}`
|
||||
|
||||
- 실행 파일 이름으로 기존 프로그램의 CPU 사용 제한:
|
||||
|
||||
`cpulimit --exe {{프로그램}} --limit {{25}}`
|
||||
|
||||
- 주어진 프로그램을 실행하고 CPU 사용을 50%로 제한:
|
||||
|
||||
`cpulimit --limit {{50}} -- {{프로그램 인수1 인수2 ...}}`
|
||||
|
||||
- 프로그램을 실행하고 CPU 사용을 50%로 제한하며 cpulimit을 백그라운드에서 실행:
|
||||
|
||||
`cpulimit --limit {{50}} --background -- {{프로그램}}`
|
||||
|
||||
- 프로그램의 CPU 사용이 50%를 초과하면 프로세스 종료:
|
||||
|
||||
`cpulimit --limit 50 --kill -- {{프로그램}}`
|
||||
|
||||
- 프로그램과 자식 프로세스의 CPU 사용을 각각 25%로 제한:
|
||||
|
||||
`cpulimit --limit {{25}} --monitor-forks -- {{프로그램}}`
|
Reference in New Issue
Block a user