常用进程操作命令(2)

#切换到stephen用户下执行一个后台进程,这里sleep进程将在后台睡眠1000秒。
  /> su stephen
  /> sleep 1000& 
  [1] 4812
  /> exit  #退回到切换前的root用户
  #查看已经启动的后台sleep进程,其ni值为0,宿主用户为stephen
  /> ps -eo user,pid,ni,command | grep stephen
  stephen  4812  0 sleep 1000
  root        4821    0 grep  stephen
  #以指定用户的方式修改该用户下所有进程的nice值
  /> renice -n 5 -u stephen
  500: old priority 0, new priority 5
  #从再次执行ps的输出结果可以看出,该sleep后台进程的nice值已经调成了5
  /> ps -eo user,pid,ni,command | grep stephen
  stephen  4812  5 sleep 1000
  root        4826  0 grep  stephen
  #以指定进程pid的方式修改该进程的nice值
  /> renice -n 10 -p 4812
  4812: old priority 5, new priority 10
  #再次执行ps,该sleep后台进程的nice值已经从5变成了10
  /> ps -eo user,pid,ni,command | grep stephen
  stephen  4812  10 sleep 1000
  root        4829  0 grep  stephen

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/16958.html