renice가 macOS Sierra에서 작동하지 않습니다

renice가 macOS Sierra에서 작동하지 않습니다

HandBrakemacOS에서 낮은 우선순위를 설정하고 싶습니다 .

renice명령을 사용해 보았지만 pid작동하지 않는 것 같습니다. (가성비 좋은 숙소 0)

% ps ax -l | grep Hand
  501 32255     1   0  46  0  3433240 544536 -      R      ??   52:50.69 /Applications/HandBrake.app/Contents/MacOS/HandBrake
% sudo renice -p 32255 -n 10
% ps ax -l | grep Hand
  501 32255     1   0  46  0  3433240 530868 -      R      ??   55:58.62 /Applications/HandBrake.app/Contents/MacOS/HandBrake
% sudo renice -p 32255
% ps ax -l | grep Hand
  501 32255     1   0  46  0  3433184 520424 -      R      ??   62:01.50 /Applications/HandBrake.app/Contents/MacOS/HandBrake

작동 방법은 다음과 같습니다 nice.

% nice /Applications/HandBrake.app/Contents/MacOS/HandBrake
% ps ax -l | grep Hand
501 32467 30511   0  46 10  2726256 156284 -      SN+  s004    0:00.67 /Applications/HandBrake.app/Contents/MacOS/HandBrake

내가 뭐 잘못 했어요?

답변1

보고 있다매뉴얼 페이지:

요약

renice priority [[-p] pid ...] [[-g] pgrp ...] [[-u] user ...]
renice -n increment [[-p] pid ...] [[-g] pgrp ...] [[-u] user ...]

-n토론이 먼저 이루어져야 할 것 같습니다 -p.
그러니 시도해 보세요:

sudo renice -n 10 -p 32255

물론 이것이 제가 macOS Sierra에서 하는 일입니다.

관련 정보