Linux命令(50)之ln

简介: Linux命令(50)之ln

linux命令之ln

1.ln介绍
linux命令用来设置硬链接和软链接。

1.1.硬链接
硬链接指通过索引节点号来进行连接,相当于复制

1.不支持跨分区链接。
2.链接源文件与目标文件共用一个inode值,节省inode空间,每增加一个硬链接,文件inode连接数就会增加1。
3.源文件丢失,目标文件内容不会丢失。
4.仅支持文件。
5.相当于文件的“复制”

1.2.软链接
软链接是一种类似“快捷方式”的连接,也叫符号连接(Symbolic Link)

1.支持跨分区链接
2.软链接源文件与目标文件Inode不相同,消耗更多inode空间,文件inode连接数始终为1。
3.源文件丢失,目标文件内容会丢失。
4.目录、文件都支持。

2.ln用法
ln [参数] sourcefile linkfile

ln重用参数
参数 说明
-s 软链接
-f 如果目标文件存在,则直接移除后再创建(了解即可,99.999%不会用)
3.实例
3.1.a.txt文件创建硬链接
命令:

ln a.txt aa.txt

链接源文件与目标文件共用一个inode值,每增加一个硬链接,文件inode连接数就会增加1

[root@rhel77 ~]# ln a.txt aa.txt
[root@rhel77 ~]# ls -la a.txt
-rw-r--r-- 2 root root 10 Jul 3 09:11 a.txt
[root@rhel77 ~]# ll aa.txt
-rw-r--r-- 2 root root 10 Jul 3 09:11 aa.txt
[root@rhel77 ~]# md5sum a.txt aa.txt
b2e0d43c3ab40f1776b9d8b57e34fd48 a.txt
b2e0d43c3ab40f1776b9d8b57e34fd48 aa.txt
[root@rhel77 ~]# ls -i a.txt aa.txt
573126 aa.txt 573126 a.txt
[root@rhel77 ~]#
硬链接创建后,a.txt和aa.txt文件权限会保持一致

[root@rhel77 ~]# ll a.txt aa.txt
-rw-r--r-- 2 root root 18 Jul 3 09:17 aa.txt
-rw-r--r-- 2 root root 18 Jul 3 09:17 a.txt
[root@rhel77 ~]#
当a.txt内容更新后,aa.txt也会自动更新;反之亦然

[root@rhel77 ~]# echo "123" >>a.txt
[root@rhel77 ~]# cat aa.txt
hard link
123
[root@rhel77 ~]# echo "234" >>aa.txt
[root@rhel77 ~]# cat a.txt
hard link
123
234
[root@rhel77 ~]#
当aa.txt文件权限变更后,a.txt文件权限也会自动更新;反义亦然

[root@rhel77 ~]# chmod 777 aa.txt
[root@rhel77 ~]# ll a.txt aa.txt
-rwxrwxrwx 2 root root 18 Jul 3 09:17 aa.txt
-rwxrwxrwx 2 root root 18 Jul 3 09:17 a.txt
[root@rhel77 ~]# chmod 755 a.txt
[root@rhel77 ~]# ll a.txt aa.txt
-rwxr-xr-x 2 root root 18 Jul 3 09:17 aa.txt
-rwxr-xr-x 2 root root 18 Jul 3 09:17 a.txt
[root@rhel77 ~]#
删除a.txt文件,硬链接个数会减少,文件内容保持不变

目录不支持硬链接的创建

[root@rhel77 ~]# ln web1 web2
ln: ‘web1’: hard link not allowed for directory
[root@rhel77 ~]#
硬链接也不能快分区进行创建

[root@rhel77 ~]# ln aa.txt /var/log/aa.txt
ln: failed to create hard link ‘/var/log/aa.txt’ => ‘aa.txt’: Invalid cross-device link
[root@rhel77 ~]#
3.2.aa.txt文件创建软链接
命令:

ln -s aa.txt a.txt

软链接源文件与目标文件Inode不相同,消耗更多inode空间,文件inode连接数始终为1。

[root@rhel77 ~]# ln -s aa.txt a.txt
[root@rhel77 ~]# ls -l a.txt
lrwxrwxrwx 1 root root 6 Jul 3 09:29 a.txt -> aa.txt
[root@rhel77 ~]# ls -i aa.txt a.txt
573126 aa.txt 5831950 a.txt
[root@rhel77 ~]#
如果源文件丢失,目标文件内容也会同步丢失

[root@rhel77 ~]# rm -rf aa.txt
[root@rhel77 ~]# ls -l a.txt
lrwxrwxrwx 1 root root 6 Jul 3 09:29 a.txt -> aa.txt
[root@rhel77 ~]# cat a.txt
cat: a.txt: No such file or directory
[root@rhel77 ~]#
软链接支持跨分区链接

[root@rhel77 ~]# echo "bbb" >>b.txt
[root@rhel77 ~]# ln -s /root/b.txt /var/log/bb.txt
[root@rhel77 ~]# cat !$
cat /var/log/bb.txt
bbb
[root@rhel77 ~]# ls -l /var/log/bb.txt
lrwxrwxrwx 1 root root 11 Jul 3 09:36 /var/log/bb.txt -> /root/b.txt
[root@rhel77 ~]#

目录支持创建软链接

[root@rhel77 ~]# mkdir a
[root@rhel77 ~]# cd a
[root@rhel77 a]# ls
[root@rhel77 a]# echo "a" >a.txt
[root@rhel77 a]# echo "b" >b.txt
[root@rhel77 a]# echo "c" >c.txt
[root@rhel77 a]# cd
[root@rhel77 ~]# ls
a
[root@rhel77 ~]# ln -s a b
[root@rhel77 ~]# ls -ld b
lrwxrwxrwx 1 root root 1 Jul 3 09:38 b -> a
[root@rhel77 ~]# cd b
[root@rhel77 b]# ls
a.txt b.txt c.txt
[root@rhel77 b]# cat a.txt
a
[root@rhel77 b]# cat b.txt
b
[root@rhel77 b]# cat c.txt
c
[root@rhel77 b]#

如果删除a目录,则其软链接b目录中的文件内容也随之失效。

[root@rhel77 ~]# rm -rf a
[root@rhel77 ~]# ls -ld b
lrwxrwxrwx 1 root root 1 Jul 3 09:38 b -> a
[root@rhel77 ~]# cd b
-bash: cd: b: No such file or directory
[root@rhel77 ~]# ls
b
[root@rhel77 ~]#
注意点:

最后,建议在使用软链接过程中,请使用绝对路径,如果使用了相对路径,可能会出现链接数过多的错误。
————————————————
版权声明:本文为CSDN博主「小黑要上天」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/z19861216/article/details/131508933

目录
相关文章
|
10天前
|
监控 Linux
如何检查 Linux 内存使用量是否耗尽?这 5 个命令堪称绝了!
本文介绍了在Linux系统中检查内存使用情况的5个常用命令:`free`、`top`、`vmstat`、`pidstat` 和 `/proc/meminfo` 文件,帮助用户准确监控内存状态,确保系统稳定运行。
88 6
|
11天前
|
Linux
在 Linux 系统中,“cd”命令用于切换当前工作目录
在 Linux 系统中,“cd”命令用于切换当前工作目录。本文详细介绍了“cd”命令的基本用法和常见技巧,包括使用“.”、“..”、“~”、绝对路径和相对路径,以及快速切换到上一次工作目录等。此外,还探讨了高级技巧,如使用通配符、结合其他命令、在脚本中使用,以及实际应用案例,帮助读者提高工作效率。
47 3
|
11天前
|
监控 安全 Linux
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景,包括 ping(测试连通性)、traceroute(跟踪路由路径)、netstat(显示网络连接信息)、nmap(网络扫描)、ifconfig 和 ip(网络接口配置)。掌握这些命令有助于高效诊断和解决网络问题,保障网络稳定运行。
35 2
|
18天前
|
缓存 监控 Linux
|
22天前
|
Linux Shell 数据安全/隐私保护
|
23天前
|
域名解析 网络协议 安全
|
5天前
|
运维 监控 网络协议
运维工程师日常工作中最常用的20个Linux命令,涵盖文件操作、目录管理、权限设置、系统监控等方面
本文介绍了运维工程师日常工作中最常用的20个Linux命令,涵盖文件操作、目录管理、权限设置、系统监控等方面,旨在帮助读者提高工作效率。从基本的文件查看与编辑,到高级的网络配置与安全管理,这些命令是运维工作中的必备工具。
31 3
|
29天前
|
运维 监控 网络协议
|
30天前
|
监控 Linux Shell
|
11天前
|
安全 网络协议 Linux
本文详细介绍了 Linux 系统中 ping 命令的使用方法和技巧,涵盖基本用法、高级用法、实际应用案例及注意事项。
本文详细介绍了 Linux 系统中 ping 命令的使用方法和技巧,涵盖基本用法、高级用法、实际应用案例及注意事项。通过掌握 ping 命令,读者可以轻松测试网络连通性、诊断网络问题并提升网络管理能力。
42 3
下一篇
无影云桌面