日期:2014-05-16  浏览次数:20582 次

Linux:如何查看一个进程的详细的启动时间

ps -A -opid,stime,etime,args 

其中:

-A: Select all processes. Identical to -e.

-o: user-defined format.

pid: 列出进程号

stime: start time

etime: elapse time

args: 命令信息


当然,也可以到/proc/pid中查看.