'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



Solution 1:[1]

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

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1