Is it possible to run on ubuntu 18.04? #14387
-
I know this is a really old distribution, but let's say I can only run on this version of ubuntu. DISTRIB_ID=Ubuntu I try to run with the latest prebuilt "llama-b5757-bin-ubuntu-x64.zip" and get this error
I know this mean my libc version is too old, but is there any workaround ? Has any one successfully run this on ubuntu 18.04 ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Yes it is possible, but super tedious. It's much better to just build it yourself, or upgrade the OS. If you still want to do it, this is the method I've used.
For example, if you have the libs in $HOME/tmp/newlibs you can try something like: Most likely it will result in a segfault, because some lib was missing. Good luck! |
Beta Was this translation helpful? Give feedback.
Yes it is possible, but super tedious. It's much better to just build it yourself, or upgrade the OS.
(Or maybe utilize a virtual machine, or something...)
If you still want to do it, this is the method I've used.
(And yeah I'd be interested to hear if anyone has a better way!)
For example, if you have the libs in $HOME/tmp/newlibs you can try something like:
LD_LIBRARY_PATH=$HOME/tmp/newlibs $HOME/tmp/newlibs/ld-linux-x86-64.so.2 …