Tengo Ubuntu 16.04.2 LTS instalado en un servidor arm64:
# uname -a
Linux test 4.9.23-std-1 #1 SMP Mon Apr 24 13:18:14 UTC 2017 aarch64 aarch64 aarch64 GNU/Linux
Ejecuté el siguiente comando para habilitar la armhf
instalación del paquete:
# dpkg --add-architecture armhf
Luego instalé el traceroute
paquete:
# apt-get install traceroute:armhf
Reading package lists... Done
Building dependency tree
[...]
Preparing to unpack .../traceroute_1%3a2.0.21-1_armhf.deb ...
Unpacking traceroute:armhf (1:2.0.21-1) ...
Processing triggers for man-db (2.7.5-1) ...
Sin embargo, no puedo iniciar el ejecutable:
# traceroute
-bash: /usr/sbin/traceroute: cannot execute binary file: Exec format error
Más información:
# file /usr/bin/traceroute.db
/usr/bin/traceroute.db: ELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV),
dynamically linked, interpreter /lib/ld-linux-armhf.so.3, for GNU/Linux
2.6.32, BuildID[sha1]=0ebd0553e26b163dd848c131fe8ee0a4a2409109, stripped
# ldd /usr/bin/traceroute.db
not a dynamic executable
También intenté instalar binfmt-support
y confirmar que el binfmt_misc
módulo estaba cargado.
¿No es arm64
compatible con versiones anteriores armhf
? ¿Cómo puedo ejecutar armhf
ejecutables en un arm64
servidor?
apt-get update; apt-get upgrade
después dpkg --add-architecture armhf
?