user17714926
user17714926

Reputation:

Rstudio not starting on Ubuntu 22.04 - error while loading shared library: libcrypto.so.1.1

There's a libcrypto.so.1 in the system, I created a symlink to it as libcrypto.so.1.1, but it does not find it.

I'm launching rstudio via the binary download: https://download1.rstudio.org/desktop/bionic/amd64/rstudio-2022.02.2-485-amd64-debian.tar.gz

Upvotes: 3

Views: 2360

Answers (1)

user17714926
user17714926

Reputation:

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.1l-1ubuntu1.3_amd64.deb

sudo dpkg -i libssl1.1_1.1.1l-1ubuntu1.3_amd64.deb

Upvotes: 1

Related Questions