Jaikoz Version: Jaikoz 11.6.2 Pulp
OS: Linux Mint 19.3 Tricia
When I run ./jaikoz
I get
Error: could not find libjava.so
Error: Could not find Java SE Runtime Environment.
I understand that jaikoz comes with it’s own runtime. That runtime seems to be located at:
<install_dir>/jaikoz/lib/runtime
libjava.so
would be located in <install_dir>/jaikoz/lib/runtime/lib/libjava.so
I ran strace ./jaikoz
and it’s not looking for libjava.so
in that path. Instead It was looking for it here:
/home/<user>/lib
So I ran this command:
cd $HOME
ln -s <install_dir>/jaikoz/lib/runtime/lib`
After that I can run jaikoz. I don’t think this is right. Shouldn’t jaikoz know where to get the included libjava.so
file?