Eu tenho o Ubuntu 16.04.2 LTS instalado em um 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
Executei o seguinte comando para ativar a armhf
instalação do pacote:
# dpkg --add-architecture armhf
Eu instalei o traceroute
pacote:
# 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) ...
No entanto, não consigo iniciar o executável:
# traceroute
-bash: /usr/sbin/traceroute: cannot execute binary file: Exec format error
Outras informações:
# 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
Eu também tentei instalar binfmt-support
e confirmar que o binfmt_misc
módulo estava carregado.
Não é arm64
compatível com versões anteriores armhf
? Como posso executar armhf
executáveis em um arm64
servidor?
apt-get update; apt-get upgrade
depois dpkg --add-architecture armhf
?