ps -def 或者pid可以查看到进程id和启动命令的相对路径,要想查看详细的,请查找目录
/proc/${pid}
比如:
[email protected]:~# root root 0 Aug 6 23:52 cwd -> /home/benny/logserver -r-------- 1 root root 0 Aug 6 23:52 environ lrwxrwxrwx 1 root root 0 Aug 6 23:52 exe -> /home/benny/logserver/logserverd
cwd指向代表目录
exe指向代表启动程序
cmdline 代表启动的命令行
environ 代表进程启动的环境变量
fd是进程打开或者使用的文件链接
很有用的分析进程的信息。
时间: 2024-12-26 05:54:35