
Estoy intentando instalar el comando Whereis en Alpine Linux 3.5.
En realidad estoy ejecutando el siguiente comando:
apk add --update whereis
Pero no funciona porque me sale este error:
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]
Parece que no hay un paquete donde está, seguramente me falta algo. ¿Qué debo hacer para obtener el comando Whereis?
Respuesta1
Necesitas instalar el util-linux
paquete:
apk add --update util-linux
Que contiene el whereis
binario.