高山linux:readelf(缺失)。如何在Alpine Linux上安装readelf?
问题描述:
当我试图在Apline3.5上安装readelf
包时,我收到了此错误消息。高山linux:readelf(缺失)。如何在Alpine Linux上安装readelf?
$ apk add --no-cache readelf
client readelf
fetch http://dl- cdn.alpinelinux.org/alpine/v3.5/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/v3.5/community/x86_64/APKINDEX.tar.gz
ERROR: unsatisfiable constraints:
readelf (missing):
required by: world[readelf]
我想用一些命令来解决这个问题。
这是因为,我想能够用Dockerfile来做到这一点。 我该怎么办?
答
您需要使用binutils
包相同
$ apk add --update binutils
(1/2) Installing binutils-libs (2.28-r2)
(2/2) Installing binutils (2.28-r2)
Executing busybox-1.26.2-r5.trigger
OK: 13 MiB in 14 packages
$ readelf
Usage: readelf <option(s)> elf-file(s)
Display information about the contents of ELF format files
Options are:
-a --all Equivalent to: -h -l -S -s -r -d -V -A -I
-h --file-header Display the ELF file header
-l --program-headers Display the program headers
Stack Overflow是用于编程和发展问题的站点。这个问题似乎与题目无关,因为它不涉及编程或开发。请参阅帮助中心的[我可以询问哪些主题](http://stackoverflow.com/help/on-topic)。也许[超级用户](http://superuser.com/)或[Unix&Linux堆栈交换](http://unix.stackexchange.com/)会是一个更好的地方。 – jww