Skip to content

Instantly share code, notes, and snippets.

@nntoan
Last active March 3, 2023 10:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nntoan/5f72c0edb8d63606093da33603b72466 to your computer and use it in GitHub Desktop.
Save nntoan/5f72c0edb8d63606093da33603b72466 to your computer and use it in GitHub Desktop.
Ubuntu 22.04 + OpenSSL 1.1 issue

Issue

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

Solution

This fixes it (a problem with packaging in 22.04):

wget http://nz2.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.17_amd64.deb
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.17_amd64.deb

P/S: If the link is expired, check http://nz2.archive.ubuntu.com/ubuntu/pool/main/o/openssl/?C=M;O=D for a valid one.

Current version is: libssl1.1_1.1.1f-1ubuntu2.17_amd64.deb

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment