linux – 将内存中正在运行的进程与磁盘中的可执行文件进行比较

前端之家收集整理的这篇文章主要介绍了linux – 将内存中正在运行的进程与磁盘中的可执行文件进行比较前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个大项目,它将可执行文件(让我们称之为问候语)加载到内存中,但由于某种原因(例如,在不同目录下有许多文件称为问候语),我需要知道内存中的进程是否正好是我想用.

我知道如何比较两个文件:diff,cmp,cksum等.但有没有办法将内存中的进程与硬盘中的可执行文件进行比较?

解决方法

根据 this answer,您可以从proc文件系统获取二进制文件的内存版本的内容.我想你可以使用原始和内存版本.

According to the man page of /proc,under Linux 2.2 and later,the file is a symbolic link containing the actual pathname of the executed command. Apparently,the binary is loaded into memory,and /proc/[pid]/exe points to the content of the binary in memory.

原文链接:https://www.f2er.com/linux/394753.html

猜你在找的Linux相关文章