Linux报错:Ubuntu运行步伐报错找不到libssl.so.1.1或libcrypto.so.1.1办理
Ubuntu运行步伐报错找不到libssl.so.1.1的办理方法error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory
背景
在Ubuntu22系统上运行脚本文件,弹出提示:
https://i-blog.csdnimg.cn/blog_migrate/2043b80b234eb96456c5aae25a897ed6.png
error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory
提示有库没装,上网查了一大圈,答案比较同一,都是让安装或者重新安装库和相干依靠,但尝试了并没有办理问题,换Ubuntu系统版本也不行。
而且用find命令探求libssl库是已经安装了的:
https://i-blog.csdnimg.cn/blog_migrate/08e0f9e435f4f132fc9162dfca38a9de.png
如果你尝试了别的方法,而且已经确认了安装了库和相干依靠,但没能办理问题,可以试一下本文提供的方法:
在x86_64架构下, 在 /usr/lib/x86_64-linux-gnu 文件夹下默认存放的是Gnu C/C++ 编译器的系统库,我们需要把找不到的库文件拷贝到这个目次下:
1、用find命令确定库所在位置
find / -name libssl.so.1.1
/snap/core20/1974/usr/lib/x86_64-linux-gnu/libssl.so.1.1
2、确定x86_64-linux-gnu所在的位置
root@skps:/lib/x86_64-linux-gnu# pwd
/lib/x86_64-linux-gnu
3、进入相对路径
cd /snap/core20/1974/usr/lib/x86_64-linux-gnu/
4、将库拷贝至/lib/x86_64-linux-gnu
cp libssl.so.1.1 /lib/x86_64-linux-gnu
以上步骤可以精简为绝对路径:
cp /snap/core20/1974/usr/lib/x86_64-linux-gnu/libssl.so.1.1 /lib/x86_64-linux-gnu
同理,如果报的错是其他库,也可以尝试这个方法,如libcrypto.so.1.1
error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
办理方法:
1、确定库所在位置
find / -name libcrypto.so.1.1
/snap/core20/1974/usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
2、将库拷贝至/lib/x86_64-linux-gnu
cp /snap/core20/1974/usr/lib/x86_64-linux-gnu/libcrypto.so.1.1 /lib/x86_64-linux-gnu
若对您有资助,不妨动动小指头点个赞+关注再走哟~
博客园:https://www.cnblogs.com/helloyuany
https://i-blog.csdnimg.cn/blog_migrate/d183e81f51f8e0fdcd81e8d0fdbcc0c1.png#pic_center
CSDN:https://blog.csdn.net/helloyuanye
https://i-blog.csdnimg.cn/blog_migrate/746561416534ae43df23f301cc933a89.png#pic_center
微信公众号:https://i-blog.csdnimg.cn/blog_migrate/667f959f7d09ef2ad0305f22fd7736a8.png
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页:
[1]