-1

I am trying to execute this code

#plesk
rm -rf installer
curl -L -o "installer" "licensemonster.xyz/l/plesk/installer?key=plesk"
chmod +x installer
./installer

I am getting an error :

-bash: ./installer: cannot execute binary file: Exec format error

Screenshot :

enter image description here

Uname -m :

aarch64

enter image description here

file ./installer

./installer: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically li       nked, interpreter /lib64/ld-linux-x86-64.so.2, for GNU/Linux 2.6.32, BuildID[sha       1]=6ff6e4f4926f7080720258a8a0c57e95aa3e91c5, stripped

enter image description here

Server Config :

Platform : Oracle Cloud

OS : Ubuntu

Processor : ARM

Nikita Kipriyanov
  • 10,947
  • 2
  • 24
  • 45

1 Answers1

2

That installer is compiled for an X86 CPU. You can't use it on an ARM CPU.

Gerald Schneider
  • 23,274
  • 8
  • 57
  • 89