###linux下查看当前进程以及杀死进程 查看进程 ps命令查找与进程相关的PID号: ps a :显示现行终端机下的所有程序,包括其他用户的程序. ps -A :显示所有程序. ps c :列出程序时,显示每个程序真正的指令名称,而不包含路径,参数或常驻服务的标示. ps -e :此参数的效果和指定"A"参数相同. ps e :列出程序时,显示每个程序所使用的环境变量. ps f :用ASCII字符显示树状结构,表达程序间的相互关系. ps -H :显示树状结构,表示程序间的相互关…
linux下生成core dump文件方法及设置 from:http://www.cppblog.com/kongque/archive/2011/03/07/141262.html core dump的概念: A core dump is the recorded state of the working memory of a computer program at a specific time, generally when the program has terminated a…