centos 查看cpu占用 杀死进程

###

复制代码
// 查看实时进程
top // ps列出前10个CPU使用率最高的process ps aux --sort=-pcpu | head -10 kill -9 1234 // 1234为进程号

####

####

原文地址:https://www.cnblogs.com/andy0816/p/15572806.html