我正在尝试在 alpine linux 3.5 上安装 whereis 命令
实际上我正在运行以下命令:
apk add --update whereis
但它不起作用,因为我收到此错误:
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:
whereis (missing):
required by: world[whereis]
好像没有 whereis 包,我肯定漏掉了什么。我应该怎么做才能获取 whereis 命令?
答案1
您需要安装该util-linux
包:
apk add --update util-linux
其中包含whereis
二进制文件。