Ho Ubuntu 16.04.2 LTS installato su un server 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
Ho eseguito il comando seguente per abilitare l' armhf
installazione del pacchetto:
# dpkg --add-architecture armhf
Ho quindi installato il traceroute
pacchetto:
# 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) ...
Tuttavia, non riesco ad avviare l'eseguibile:
# traceroute
-bash: /usr/sbin/traceroute: cannot execute binary file: Exec format error
Ulteriori informazioni:
# 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
Ho anche provato a installare binfmt-support
e confermare che il binfmt_misc
modulo è stato caricato.
Non è arm64
compatibile con le versioni precedenti armhf
? Come posso eseguire armhf
eseguibili su un arm64
server?
apt-get update; apt-get upgrade
dopo dpkg --add-architecture armhf
?