D
Deleted member 62382
Guest
Hello,
I'm trying to use a linux binary on FreeBSD.
I've followed the instructions from the handbook.
When I tried to run the binary, I got this error message:
I then launched a CentOS instance and copied
I then created a new symlink and have these two files in
When I try to execute the binary, I now have this error message:
It seems the symlink is not working for whatever reason. Does someone has any idea why?
I'm trying to use a linux binary on FreeBSD.
I've followed the instructions from the handbook.
When I tried to run the binary, I got this error message:
Code:
/lib64/libc.so.6: version `GLIBC_2.18' not found (required by ./deno)
I then launched a CentOS instance and copied
/lib64/libc-2.28.so
to my FreeBSD system.I then created a new symlink and have these two files in
/compat/linux/lib64
Code:
...
-rwxr-xr-x 1 root wheel 4176104 Sep 1 10:04 libc-2.28.so
lrwxr-xr-x 1 root wheel 12 Sep 1 10:06 libc.so.6 -> libc-2.28.so
...
When I try to execute the binary, I now have this error message:
Code:
./deno: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
It seems the symlink is not working for whatever reason. Does someone has any idea why?