linux下命令2:查看进程何时开始执行
发布网友
发布时间:2022-04-19 11:11
我来回答
共1个回答
热心网友
时间:2023-08-26 23:50
使用
ps命令
,命令执行参数及运行结果如下:
#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]
说明:PID指的是进程ID号,STIME即启动时间,ELAPSED
即运行时间。