How to make utserver run in ubuntu 19

1

I have downloaded utorrent from

wget http://download-new.utorrent.com/endpoint/utserver/os/linux-x64-ubuntu-13-04/track/beta/ -O ~/Downloads/utserver.tar.gz

but I am getting the error

utserver: error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory

I have checked and noticed that I do have libssl - but a newer version:

lrwxrwxrwx 1 root root 13 Apr  3 13:50 /usr/lib/x86_64-linux-gnu/libssl.so -> libssl.so.1.1"

Any advice on how to make utserver work with my libssl version?

shahar keren

Posted 2019-04-29T14:51:35.847

Reputation: 11

https://www.linuxbabe.com/ubuntu/install-utorrent-ubuntu-16-04-17-04 should work also for newer releases. – None – 2019-04-29T15:51:27.370

thanks for replying @GabrielaGarcia, having exact same issue with the release published on that url – shahar keren – 2019-04-29T16:49:46.847

It's the same release/version, the latest published. The point is to follow the additional instructions there. Have you? What was the result? Namely it says to call install libssl1.0.0 and libssl-dev, creat a symbolic link, etc. – None – 2019-04-29T17:28:10.103

yes @GabrielaGarcia, I have followed all instructions. actually, I had utserver working fine on ubuntu 18.10, issue started to occur intimidate after upgrade to 19.4, libssl1.0.0 is not available for ubuntu 19.4, I am quite sure it is related to the fact that the package was upgraded. – shahar keren – 2019-04-29T22:19:48.473

Although not really recommended, please Google, download and install the file from a previous release. – None – 2019-04-30T06:50:19.447

@GabrielaGarcia, I have tried that before, and ended up with a very similar error message, only this time an even older libssl version was required (libssl0.9.8), are you refering to a specific previous version of utserver ?\ – shahar keren – 2019-04-30T07:26:55.037

No, I'm obviously talking about libssl... Find the specific version that you need from the latest Ubuntu release that had that version available. – None – 2019-04-30T07:30:28.717

I do not think it is wise to make /usr/lib/x86_64-linux-gnu/libssl.so -> libssl.so.1.1 point to older versions of libssl, obviously... – shahar keren – 2019-04-30T07:51:08.707

Obviously... But without the older version you can't install what you want. Perhaps it's a good opportunity to find an alternative? There's always a point in time when unmaintained software gets obsolete because its dependencies can no longer be satisfied. – None – 2019-04-30T07:53:58.110

yeah, you might have a point there, will see f someone from the release community would pick this up and fix it, else, it was fun while it lasted... – shahar keren – 2019-04-30T07:57:05.583

No answers