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/renice.md
코드싸이 624a50f563
rpicam-raw: fix typo, linux/rm: update Korean translation, linux/rm*: add Korean translation (#14714)
* linux/rm: update Korean translation

* linux/r*: add Korean translation

* rpicam-raw: fix typo
2024-11-09 22:28:34 +09:00

658 B

renice

실행 중인 프로세스의 스케줄링 우선순위/니스값을 변경합니다. 니스값은 -20(프로세스에 가장 유리)부터 19(프로세스에 가장 불리)까지의 범위를 가집니다. 같이 보기: nice. 더 많은 정보: https://manned.org/renice.

  • 실행 중인 [p]프로세스의 절대 우선순위 설정:

renice {{+3}} -p {{pid}}

  • 특정 [u]사용자가 소유한 모든 프로세스의 우선순위 증가/감소:

renice --relative {{-4}} -u {{uid|사용자}}

  • 프로세스 [g]그룹에 속한 모든 프로세스의 우선순위 설정:

renice --absolute {{5}} -g {{프로세스_그룹}}