Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.deb release missing libssl.so.1.1 #139

Open
JackRoublard opened this issue Jan 31, 2023 · 2 comments
Open

.deb release missing libssl.so.1.1 #139

JackRoublard opened this issue Jan 31, 2023 · 2 comments

Comments

@JackRoublard
Copy link

Hi,

Upon installation of the released .deb on Kubuntu 22.10 via apt, cinny refuses to start with the following error :

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

sudo ldconfig -p | grep libssl yields :

libssl3.so (libc6,x86-64) => /lib/x86_64-linux-gnu/libssl3.so
libssl.so.3 (libc6,x86-64) => /lib/x86_64-linux-gnu/libssl.so.3
libssl.so.3 (libc6) => /lib/i386-linux-gnu/libssl.so.3
libssl.so (libc6,x86-64) => /lib/x86_64-linux-gnu/libssl.so

Symlinking the latter to /lib/x86_64-linux-gnu/libssl.so.1.1 or /usr/lib[64]/libssl.so.1.1 does not help.

Tried with 2.2.4 and 2.2.3 release .deb

@Neotamandua
Copy link

I faced the same issue just now with v3.2.1

This is because the OpenSSL version is 3.0 while cinny gets pointed to libssl.so.1.1 which does not exist in your lib folder.

You can quickly fix it by installing libssl.so1.1 again. For that, you need to find the relevant version in the archive and install it.

In my case it was:
curl http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.20_amd64.deb -o libssl.deb
In the future it could be:
curl http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1[CHANGED] -o libssl.deb

then
sudo dpgk -i libssl.deb

This fixes the issue.

You can find the relevant version on
http://de.archive.ubuntu.com/ubuntu/pool/main/o/openssl/?C=M;O=D
by searching for libssl1.1_1.1.1f-1

However, Cinny should not use the outdated library and rather use the available up to date version on the machine.(https://www.openssl.org/blog/blog/2023/03/28/1.1.1-EOL/)

@compuguy
Copy link

This is still an issue with the latest cinny-desktop deb. Also looking for libwebkit2gtk-4.0 which is no longer packaged for Ubuntu 24.04. See: tauri-apps/tauri#9662

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants