http://justcoding.iteye.com/blog/1931347
1.查找所有运行的程序:ps -aux 2.查找某一个程序: 如: 输入命令ps -aux | grep jdk 用于查找含有“jdk”的所有的程序 root 9727 8818 0 16:47 pts/0 00:00:00 grep --color=auto NettyServer (pid == 8818) 3. 停止进程: kill -9 pid 来强制终止退出
原文链接:https://www.f2er.com/ubuntu/352959.html