进程管理命令

ps  查看进程

top 查看进程

kill 杀死进程     重启进程  kill 1  pid    关闭进程   kill 9  pid

ps -le 查看优先级

nice 新命令赋予优先级 in值    例:nice -n  (in的值)  需要启动的进程 

renice  修改已存在进程的优先级     renice  (优先级值)   pid

原文地址:https://www.cnblogs.com/yangfor/p/13037021.html