分析思路:
要知道运行了哪些进程,结束的目标进程是哪些,如何得到运行中的进程,需要哪些操作。
借助搜索引擎,搜索关键字:kconsole 列出进程,查询相关信息,文后参考链接
执行过程:
ps aux 列出运行进程 (记录结束的目标进程的 pid,比如 firefox pid 为 22481)
或者 grep firefox ,将显示 22481,即为 pid
接着 kill 22481 ,即可。
备注:
这些命令详细介绍可以看下面链接
参考:
Win/Mac/Linux(gnome|kde) Table of keyboard shortcuts
http://en.wikipedia.org/wiki/Table_of_keyboard_shortcuts
Linux进程查看_百度百科
http://baike.baidu.com/link?url=Ibd3yqzLWejj7Ye3uVHlDIU1orqxJbKTAD2wzvl4DsGuyjTObu_d8wY-LmYRfZoa
linux下查找进程及终止进程操作的相关命令_Teach Yourself Programming in 10 Years - Peter Norvig_百度空间
http://hi.baidu.com/mcspring/item/b638a9288e2d3fcfdcf69a8e
linux中列出打开文件进程lsof命令用法详解-chumojing-ChinaUnix博客
http://blog.chinaunix.net/uid-12461657-id-3167085.html
如何在Linux中查看所有正在运行的进程 - 51CTO.COM
http://os.51cto.com/art/201101/244090.htm
Linux # Kubuntu 假死,结束进程方法,布布扣,bubuko.com
原文地址:http://www.cnblogs.com/coding2ing/p/3775353.html