Mam Ubuntu 16.04.2 LTS zainstalowany na serwerze 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
Uruchomiłem następujące polecenie, aby włączyć armhf
instalację pakietu:
# dpkg --add-architecture armhf
Następnie zainstalowałem traceroute
pakiet:
# 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) ...
Nie mogę jednak uruchomić pliku wykonywalnego:
# traceroute
-bash: /usr/sbin/traceroute: cannot execute binary file: Exec format error
Dalsza informacja:
# 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
Próbowałem także zainstalować binfmt-support
i potwierdzić, że binfmt_misc
moduł został załadowany.
Nie jest arm64
kompatybilny wstecz armhf
? Jak mogę uruchomić armhf
pliki wykonywalne na arm64
serwerze?
apt-get update; apt-get upgrade
później dpkg --add-architecture armhf
?