mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00

* linux/rm: update Korean translation * linux/r*: add Korean translation * rpicam-raw: fix typo
658 B
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 {{프로세스_그룹}}