小议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 rm命令误操作的多场景防护方案与实践

《防止Linuxrm命令误操作的多场景防护方案与实践》在Linux系统中,rm命令是删除文件和目录的高效工具,但一旦误操作,如执行rm-rf/或rm-rf/*,极易导致系统数据灾难,本文针对不同场景... 目录引言理解 rm 命令及误操作风险rm 命令基础常见误操作案例防护方案使用 rm编程 别名及安全删除

Linux下MySQL数据库定时备份脚本与Crontab配置教学

《Linux下MySQL数据库定时备份脚本与Crontab配置教学》在生产环境中,数据库是核心资产之一,定期备份数据库可以有效防止意外数据丢失,本文将分享一份MySQL定时备份脚本,并讲解如何通过cr... 目录备份脚本详解脚本功能说明授权与可执行权限使用 Crontab 定时执行编辑 Crontab添加定

使用docker搭建嵌入式Linux开发环境

《使用docker搭建嵌入式Linux开发环境》本文主要介绍了使用docker搭建嵌入式Linux开发环境,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面... 目录1、前言2、安装docker3、编写容器管理脚本4、创建容器1、前言在日常开发全志、rk等不同

linux系统上安装JDK8全过程

《linux系统上安装JDK8全过程》文章介绍安装JDK的必要性及Linux下JDK8的安装步骤,包括卸载旧版本、下载解压、配置环境变量等,强调开发需JDK,运行可选JRE,现JDK已集成JRE... 目录为什么要安装jdk?1.查看linux系统是否有自带的jdk:2.下载jdk压缩包2.解压3.配置环境

Linux搭建ftp服务器的步骤

《Linux搭建ftp服务器的步骤》本文给大家分享Linux搭建ftp服务器的步骤,本文通过图文并茂的形式给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧... 目录ftp搭建1:下载vsftpd工具2:下载客户端工具3:进入配置文件目录vsftpd.conf配置文件4:

Linux实现查看某一端口是否开放

《Linux实现查看某一端口是否开放》文章介绍了三种检查端口6379是否开放的方法:通过lsof查看进程占用,用netstat区分TCP/UDP监听状态,以及用telnet测试远程连接可达性... 目录1、使用lsof 命令来查看端口是否开放2、使用netstat 命令来查看端口是否开放3、使用telnet

Linux系统管理与进程任务管理方式

《Linux系统管理与进程任务管理方式》本文系统讲解Linux管理核心技能,涵盖引导流程、服务控制(Systemd与GRUB2)、进程管理(前台/后台运行、工具使用)、计划任务(at/cron)及常用... 目录引言一、linux系统引导过程与服务控制1.1 系统引导的五个关键阶段1.2 GRUB2的进化优

Linux查询服务器 IP 地址的命令详解

《Linux查询服务器IP地址的命令详解》在服务器管理和网络运维中,快速准确地获取服务器的IP地址是一项基本但至关重要的技能,下面我们来看看Linux中查询服务器IP的相关命令使用吧... 目录一、hostname 命令:简单高效的 IP 查询工具命令详解实际应用技巧注意事项二、ip 命令:新一代网络配置全

linux安装、更新、卸载anaconda实践

《linux安装、更新、卸载anaconda实践》Anaconda是基于conda的科学计算环境,集成1400+包及依赖,安装需下载脚本、接受协议、设置路径、配置环境变量,更新与卸载通过conda命令... 目录随意找一个目录下载安装脚本检查许可证协议,ENTER就可以安装完毕之后激活anaconda安装更

Linux查询服务器系统版本号的多种方法

《Linux查询服务器系统版本号的多种方法》在Linux系统管理和维护工作中,了解当前操作系统的版本信息是最基础也是最重要的操作之一,系统版本不仅关系到软件兼容性、安全更新策略,还直接影响到故障排查和... 目录一、引言:系统版本查询的重要性二、基础命令解析:cat /etc/Centos-release详