CentOS 7中的execstack在哪里?

Vla*_*nko 2 yum centos7

我想将二进制文件标记为在CentOS 7.2上不需要可执行堆栈execstack,但是没有这样的实用程序并且yum找不到包execstack。为什么会这样呢?现在不使用该实用程序吗?

[root@localhost bin]# execstack
-bash: execstack: command not found
Run Code Online (Sandbox Code Playgroud)

iam*_*ser 6

execstackprelinkcentos-7中的软件包提供。这里,

http://mirror.centos.org/centos-7/7/os/x86_64/Packages/prelink-0.5.0-9.el7.x86_64.rpm

~]$ rpm -qlp http://mirror.centos.org/centos-7/7/os/x86_64/Packages/prelink-0.5.0-9.el7.x86_64.rpm | grep exec
/usr/bin/execstack
/usr/share/man/man8/execstack.8.gz


# install using YUM
~]$ yum install prelink
Run Code Online (Sandbox Code Playgroud)