Replies: 4 comments 1 reply
-
Hit same problem in Devuan 5.0 (identical to debian 12) |
Beta Was this translation helpful? Give feedback.
-
Maybe you could install an older version of libssl alongside the newer one. This worked for me. wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.deb
sudo dpkg -i libssl1.1_1.1.0g-2ubuntu4_amd64.deb |
Beta Was this translation helpful? Give feedback.
-
I also have the problem on ubuntu 24.04 LTS but just installing the old lib makes me nervous ... The "link" solution seems to be best, but where does the plugin searches the lib? I have several old libs on my machine (not in the main path) to which I could link to. But where should I place the link? |
Beta Was this translation helpful? Give feedback.
-
I was able to work around this using these steps:
cd ~/Downloads
wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.deb
cd ~/Downloads
mkdir ~/libssl1.1
dpkg-deb -x libssl1.1_1.1.0g-2ubuntu4_amd64.deb ~/libssl1.1
sudo mv /usr/local/share/audiogridder/crashpad_handler /usr/local/share/audiogridder/crashpad_handler.wrapped
sudo nano /usr/local/share/audiogridder/crashpad_handler
#!/bin/bash
export LD_LIBRARY_PATH=~/libssl1.1/usr/lib/x86_64-linux-gnu:$LD_LIBRARY_PATH
/usr/local/share/audiogridder/crashpad_handler.wrapped "$@"
sudo chmod +x /usr/local/share/audiogridder/crashpad_handler This method allows the |
Beta Was this translation helpful? Give feedback.
-
Tried to run the linux plugin on Ubuntu 24.04. Unfortunate its compiled on 20.04 so libcrypto and libssl is to old (1.1). 24.04 runs v3. I tried to just softlink but i got: version `OPENSSL_1_1_0'. Is it possible to get newer versions of the plugin that supports more up to date libs?
Beta Was this translation helpful? Give feedback.
All reactions