小议linux中的软链接------顺便谈谈为什么编译有时会出现cannot find -lssl, cannot find -lcrypto

本文主要是介绍小议linux中的软链接------顺便谈谈为什么编译有时会出现cannot find -lssl, cannot find -lcrypto,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

         linux中的软链接其实是很好理解的, 非常类似于Windows下的快捷方式, 我们来做个简单的实验玩玩:

 

[taoge@localhost test]$ echo hello > a.txt
[taoge@localhost test]$ ln -s a.txt b.txt
[taoge@localhost test]$ diff a.txt b.txt 
[taoge@localhost test]$ ll
total 4
-rw-rw-r-- 1 taoge taoge 6 Nov  4 07:27 a.txt
lrwxrwxrwx 1 taoge taoge 5 Nov  4 07:27 b.txt -> a.txt
[taoge@localhost test]$ 
[taoge@localhost test]$ 
[taoge@localhost test]$ 
[taoge@localhost test]$ echo world >> a.txt
[taoge@localhost test]$ diff a.txt b.txt 
[taoge@localhost test]$ 
[taoge@localhost test]$ 
[taoge@localhost test]$ 
[taoge@localhost test]$ echo c++ >> b.txt
[taoge@localhost test]$ diff a.txt b.txt 
[taoge@localhost test]$ 
[taoge@localhost test]$ 
[taoge@localhost test]$ 
[taoge@localhost test]$ rm b.txt 
[taoge@localhost test]$ cat a.txt 
hello
world
c++
[taoge@localhost test]$ 
[taoge@localhost test]$ 
[taoge@localhost test]$ 
[taoge@localhost test]$ ln -s a.txt b.txt
[taoge@localhost test]$ diff a.txt b.txt 
[taoge@localhost test]$ rm a.txt
[taoge@localhost test]$ cat b.txt 
cat: b.txt: No such file or directory
[taoge@localhost test]$ ll
total 0
lrwxrwxrwx 1 taoge taoge 5 Nov  4 07:29 b.txt -> a.txt   (注意, 此处的a.txt在闪动)
[taoge@localhost test]$ 

 

        根据如上实验和结果, 我们知道, 软链接其实就是快捷方式。 有时候, 我们也把软链接叫符号链接。 大家可以根据上述小实验轻易地总结出软链接的特点, 我就不费口舌了。

 

        下面, 我们继续来看小实验:

 

[taoge@localhost test]$ ls
main.c
[taoge@localhost test]$ cat main.c 
#include <stdio.h>int main()
{printf("hello world\n");return 0;
}
[taoge@localhost test]$ gcc main.c 
[taoge@localhost test]$ ./a.out 
hello world
[taoge@localhost test]$ 
[taoge@localhost test]$ 
[taoge@localhost test]$ ./x
-bash: ./x: No such file or directory
[taoge@localhost test]$ ln -s a.out x
[taoge@localhost test]$ ./x
hello world
[taoge@localhost test]$ 

        看了这个小实验, 我无需多说软连接的用法和用途了。

 

 

        在实际开发中, 偶尔会遇到cannot find -lssl, cannot find -lcrypto这样的问题, 是什么原因呢? 因为找不到libssl.so库和libcrypto.so这样的库,那怎么办呢? 用软链接吧。 在root权限下进入到/usr/lib中去:

 

[root@localhost lib]# ll | grep ssl
-rwxr-xr-x   1 root root   216656 Aug 27  2010 libssl3.so
lrwxrwxrwx.  1 root root       15 Mar 24  2015 libssl.so.10 -> libssl.so.1.0.0
-rwxr-xr-x   1 root root   355280 Jun 30  2010 libssl.so.1.0.0
drwxr-xr-x.  3 root root     4096 Mar 24  2015 openssl
[root@localhost lib]# 
[root@localhost lib]# 
[root@localhost lib]# ll | grep crypto
lrwxrwxrwx.  1 root root       18 Mar 24  2015 libcrypto.so.10 -> libcrypto.so.1.0.0
-rwxr-xr-x   1 root root  1596748 Jun 30  2010 libcrypto.so.1.0.0
[root@localhost lib]# 

        可以看到, 是有类似库的, 只是文件名不完全吻合, 现在又不想改原来的文件名, 那怎么办呢? 用软链接吧, 搞定。

 

 

        软链接的本质就是快捷方式,很常用, 更多的讲述似乎没有必要了。


 

 

 

 

 

 

这篇关于小议linux中的软链接------顺便谈谈为什么编译有时会出现cannot find -lssl, cannot find -lcrypto的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/684551

相关文章

linux-基础知识3

打包和压缩 zip 安装zip软件包 yum -y install zip unzip 压缩打包命令: zip -q -r -d -u 压缩包文件名 目录和文件名列表 -q:不显示命令执行过程-r:递归处理,打包各级子目录和文件-u:把文件增加/替换到压缩包中-d:从压缩包中删除指定的文件 解压:unzip 压缩包名 打包文件 把压缩包从服务器下载到本地 把压缩包上传到服务器(zip

Linux 网络编程 --- 应用层

一、自定义协议和序列化反序列化 代码: 序列化反序列化实现网络版本计算器 二、HTTP协议 1、谈两个简单的预备知识 https://www.baidu.com/ --- 域名 --- 域名解析 --- IP地址 http的端口号为80端口,https的端口号为443 url为统一资源定位符。CSDNhttps://mp.csdn.net/mp_blog/creation/editor

【Python编程】Linux创建虚拟环境并配置与notebook相连接

1.创建 使用 venv 创建虚拟环境。例如,在当前目录下创建一个名为 myenv 的虚拟环境: python3 -m venv myenv 2.激活 激活虚拟环境使其成为当前终端会话的活动环境。运行: source myenv/bin/activate 3.与notebook连接 在虚拟环境中,使用 pip 安装 Jupyter 和 ipykernel: pip instal

安卓链接正常显示,ios#符被转义%23导致链接访问404

原因分析: url中含有特殊字符 中文未编码 都有可能导致URL转换失败,所以需要对url编码处理  如下: guard let allowUrl = webUrl.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) else {return} 后面发现当url中有#号时,会被误伤转义为%23,导致链接无法访问

Linux_kernel驱动开发11

一、改回nfs方式挂载根文件系统         在产品将要上线之前,需要制作不同类型格式的根文件系统         在产品研发阶段,我们还是需要使用nfs的方式挂载根文件系统         优点:可以直接在上位机中修改文件系统内容,延长EMMC的寿命         【1】重启上位机nfs服务         sudo service nfs-kernel-server resta

【Linux 从基础到进阶】Ansible自动化运维工具使用

Ansible自动化运维工具使用 Ansible 是一款开源的自动化运维工具,采用无代理架构(agentless),基于 SSH 连接进行管理,具有简单易用、灵活强大、可扩展性高等特点。它广泛用于服务器管理、应用部署、配置管理等任务。本文将介绍 Ansible 的安装、基本使用方法及一些实际运维场景中的应用,旨在帮助运维人员快速上手并熟练运用 Ansible。 1. Ansible的核心概念

Linux服务器Java启动脚本

Linux服务器Java启动脚本 1、初版2、优化版本3、常用脚本仓库 本文章介绍了如何在Linux服务器上执行Java并启动jar包, 通常我们会使用nohup直接启动,但是还是需要手动停止然后再次启动, 那如何更优雅的在服务器上启动jar包呢,让我们一起探讨一下吧。 1、初版 第一个版本是常用的做法,直接使用nohup后台启动jar包, 并将日志输出到当前文件夹n

maven 编译构建可以执行的jar包

💝💝💝欢迎莅临我的博客,很高兴能够在这里和您见面!希望您在这里可以感受到一份轻松愉快的氛围,不仅可以获得有趣的内容和知识,也可以畅所欲言、分享您的想法和见解。 推荐:「stormsha的主页」👈,「stormsha的知识库」👈持续学习,不断总结,共同进步,为了踏实,做好当下事儿~ 专栏导航 Python系列: Python面试题合集,剑指大厂Git系列: Git操作技巧GO

[Linux]:进程(下)

✨✨ 欢迎大家来到贝蒂大讲堂✨✨ 🎈🎈养成好习惯,先赞后看哦~🎈🎈 所属专栏:Linux学习 贝蒂的主页:Betty’s blog 1. 进程终止 1.1 进程退出的场景 进程退出只有以下三种情况: 代码运行完毕,结果正确。代码运行完毕,结果不正确。代码异常终止(进程崩溃)。 1.2 进程退出码 在编程中,我们通常认为main函数是代码的入口,但实际上它只是用户级