您的位置:首页 > 运维架构 > Linux

linux下查看一个进程的启动时间和运行时间

2017-08-03 14:07 686 查看
使·用 ps命令 :#ps -A -opid,stime,etime,args
ps -A -opid,stime,etime,args
结果:
root:src# ps -A -opid,stime,etime,args
PID STIME     ELAPSED COMMAND
1 09:21    08:56:14 init [3]
2 09:21    08:56:14 [migration/0]
3 09:21    08:56:14 [ksoftirqd/0]
4 09:21    08:56:14 [watchdog/0]
5 09:21    08:56:14 [events/0]
6 09:21    08:56:14 [khelper]
7 09:21    08:56:14 [kthread]
10 09:21    08:56:14 [kblockd/0]
11 09:21    08:56:14 [kacpid]
47 09:21    08:56:14 [cqueue/0]
也可以通过如下命令排序:
ps -eo pid,tty,user,comm,lstart,etime | grep init
参数说明:pid:进程IDtty:终端user:用户comm:进程名lstart:开始时间etime:运行时间
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  shell