pentix / qjournalctl

A multi-platform, Qt-based frontend for systemd's journalctl command. Accepting local as well as remote (SSH) data sources.
GNU General Public License v3.0
166 stars 17 forks source link

failed to start after compilation on xubuntu 18.04 #40

Closed freddii closed 4 years ago

freddii commented 4 years ago

when i try to start qjournalctl it exits with: ./qjournalctl: /usr/lib/x86_64-linux-gnu/libssh.so.4: no version information available (required by ./qjournalctl) ./qjournalctl: relocation error: ./qjournalctl: symbol ssh_session_is_known_server version LIBSSH_4_5_0 not defined in file libssh.so.4 with link time reference

for installation i used this script: https://raw.githubusercontent.com/freddii/program_installers/master/install_qjournalctl.sh

pentix commented 4 years ago

Hi, it seems as if libssh was not properly installed? May I ask you to post the output of ls /usr/lib/libssh*?

What was the output of your script and were there any errors?

pentix commented 4 years ago

Also I am unsure whether installing libssh-dev really is required/helpful. You might get linking/runtime errors due to this...

Could you try to rerun the script without installing libssh-dev?

freddii commented 4 years ago

ls /usr/lib/libssh ls: cannot access '/usr/lib/libssh': No such file or directory

the install log was: https://gist.github.com/freddii/334368cd412c7ac723ddb4ee24433e79

freddii commented 4 years ago

yes works now. I deinstalled libssh-dev: apt-get purge libssh-dev && apt-get autoremove

then i installed it again: apt-get install libssh-dev

after that i used my script without installing libssh.

thanks for you help :)

pentix commented 4 years ago

Good to hear :relieved: