short tutorial how to setup on Fedora 26

spind42 2017-09-07 16:07:36 +02:00
parent 28e83e0039
commit 1923fb1cf7

@ -0,0 +1,25 @@
## The problem
Executing the binary after installing according to the install page leads on fedora26 to following error:
```
./signal-cli -u +<number> daemon
Missing native library dependency for dbus service: no unix-java in java.library.path
```
Because there is no libunix-java.so
## Solution
To fix this problem install libmatthew-java and create a symbolic link in /usr/lib64 to /usr/lib64/libmatthew-java/libunix-java.so
`sudo dnf install libmatthew-java`
`ln -s /usr/lib64/libmatthew-java/libunix-java.so /usr/lib64/libunix-java.so`
Now the liblinux-java.so is on the default java.library.path according to [JDK on Fedora Documentation](https://fedoraproject.org/wiki/JDK_on_Fedora#OpenJDK_and_project_IcedTea)