arm64 서버에 Ubuntu 16.04.2 LTS가 설치되어 있습니다.
# uname -a
Linux test 4.9.23-std-1 #1 SMP Mon Apr 24 13:18:14 UTC 2017 aarch64 aarch64 aarch64 GNU/Linux
armhf
패키지 설치 를 활성화하기 위해 다음 명령을 실행했습니다 .
# dpkg --add-architecture armhf
그런 다음 traceroute
패키지 를 설치했습니다 .
# 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) ...
그러나 실행 파일을 시작할 수 없습니다.
# traceroute
-bash: /usr/sbin/traceroute: cannot execute binary file: Exec format error
추가 정보 :
# 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
또한 모듈이로드 binfmt-support
되었는지 설치 하고 확인 하려고했습니다 binfmt_misc
.
arm64
이전 버전과 호환 되지 armhf
않습니까? 서버 armhf
에서 실행 파일을 어떻게 실행할 수 arm64
있습니까?
분명히 모든 종속성과 인터프리터도 32 비트
—
여야
당신은
—
Marcos Silveira
apt-get update; apt-get upgrade
후에 수행 dpkg --add-architecture armhf
합니까?
@MarcosSilveira 예, 차이가 없습니다.
—
Nathan Osman