ELF binary type "0" not known.

Hello, I've a problem with my FreeBSD server, I'm trying to run Atos on my webserver, here's the problem
Code:
root@# cd /bin/atos
root@# ./request
ELF binary type "0" not known.
./request: Exec format error. Binary file not executable.
root@# ./response
ELF binary type "0" not known.
./response: Exec format error. Binary file not executable.
I've see we can use linux comptability but how?
Thanks.
 
Glad that you solved your problem, although I have no idea what Atos is nor what it should do.

However, I do spot a recipe for possible disaster up there. It seems you have a directory called /bin/atos on your system, which means that something has tampered with your FreeBSD base system. That is a recipe for disaster because the moment you update your OS (see freebsd-update(8)) you're putting these changes at risk too.

The proper location for this would be either /usr/local/bin or if you want to prevent this software from mixing with your installed Ports then perhaps /opt/bin would be suitable as well.

At the moment I speak from personal experience when I say that such small details can sometimes bring big consequences.
 
Back
Top