Destroyed Setup on fedora 26 with dbus (markdown)

exquo 2020-06-02 10:45:07 +00:00
parent 0a0a51e00c
commit 36ce27a667

@ -1,25 +0,0 @@
## 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)