小议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中shell解析脚本的通配符、元字符、转义符说明

《Linux中shell解析脚本的通配符、元字符、转义符说明》:本文主要介绍shell通配符、元字符、转义符以及shell解析脚本的过程,通配符用于路径扩展,元字符用于多命令分割,转义符用于将特殊... 目录一、linux shell通配符(wildcard)二、shell元字符(特殊字符 Meta)三、s

Linux之软件包管理器yum详解

《Linux之软件包管理器yum详解》文章介绍了现代类Unix操作系统中软件包管理和包存储库的工作原理,以及如何使用包管理器如yum来安装、更新和卸载软件,文章还介绍了如何配置yum源,更新系统软件包... 目录软件包yumyum语法yum常用命令yum源配置文件介绍更新yum源查看已经安装软件的方法总结软

linux报错INFO:task xxxxxx:634 blocked for more than 120 seconds.三种解决方式

《linux报错INFO:taskxxxxxx:634blockedformorethan120seconds.三种解决方式》文章描述了一个Linux最小系统运行时出现的“hung_ta... 目录1.问题描述2.解决办法2.1 缩小文件系统缓存大小2.2 修改系统IO调度策略2.3 取消120秒时间限制3

Linux alias的三种使用场景方式

《Linuxalias的三种使用场景方式》文章介绍了Linux中`alias`命令的三种使用场景:临时别名、用户级别别名和系统级别别名,临时别名仅在当前终端有效,用户级别别名在当前用户下所有终端有效... 目录linux alias三种使用场景一次性适用于当前用户全局生效,所有用户都可调用删除总结Linux

Linux:alias如何设置永久生效

《Linux:alias如何设置永久生效》在Linux中设置别名永久生效的步骤包括:在/root/.bashrc文件中配置别名,保存并退出,然后使用source命令(或点命令)使配置立即生效,这样,别... 目录linux:alias设置永久生效步骤保存退出后功能总结Linux:alias设置永久生效步骤

Linux使用fdisk进行磁盘的相关操作

《Linux使用fdisk进行磁盘的相关操作》fdisk命令是Linux中用于管理磁盘分区的强大文本实用程序,这篇文章主要为大家详细介绍了如何使用fdisk进行磁盘的相关操作,需要的可以了解下... 目录简介基本语法示例用法列出所有分区查看指定磁盘的区分管理指定的磁盘进入交互式模式创建一个新的分区删除一个存

Linux使用dd命令来复制和转换数据的操作方法

《Linux使用dd命令来复制和转换数据的操作方法》Linux中的dd命令是一个功能强大的数据复制和转换实用程序,它以较低级别运行,通常用于创建可启动的USB驱动器、克隆磁盘和生成随机数据等任务,本文... 目录简介功能和能力语法常用选项示例用法基础用法创建可启动www.chinasem.cn的 USB 驱动

高效管理你的Linux系统: Debian操作系统常用命令指南

《高效管理你的Linux系统:Debian操作系统常用命令指南》在Debian操作系统中,了解和掌握常用命令对于提高工作效率和系统管理至关重要,本文将详细介绍Debian的常用命令,帮助读者更好地使... Debian是一个流行的linux发行版,它以其稳定性、强大的软件包管理和丰富的社区资源而闻名。在使用

Linux Mint Xia 22.1重磅发布: 重要更新一览

《LinuxMintXia22.1重磅发布:重要更新一览》Beta版LinuxMint“Xia”22.1发布,新版本基于Ubuntu24.04,内核版本为Linux6.8,这... linux Mint 22.1「Xia」正式发布啦!这次更新带来了诸多优化和改进,进一步巩固了 Mint 在 Linux 桌面

LinuxMint怎么安装? Linux Mint22下载安装图文教程

《LinuxMint怎么安装?LinuxMint22下载安装图文教程》LinuxMint22发布以后,有很多新功能,很多朋友想要下载并安装,该怎么操作呢?下面我们就来看看详细安装指南... linux Mint 是一款基于 Ubuntu 的流行发行版,凭借其现代、精致、易于使用的特性,深受小伙伴们所喜爱。对