Linux硬链接、软链接的介绍及两者的区别

一、硬链接

链接数就是名字的数量:

ln(link) 硬链接,多个相同的inode文件(同分区),多个硬链接文件的存在在硬盘上只占用一个文件的容量

创建的硬链接是平等的,inode相同,删除某一个互不影响,其他文件仍然可以使用

硬链接的本质:给一个文件创建多个名字

 

创建多个硬链接,观察链接数的变化(+1),链接数是几就是有几个文件名

同一分区中,同一个inode号必定是一个文件


原始的文件

[root@CentOS7 testdir]# ll -i man.txt
15 -rw-r--r--.  1 root root 15978 Aug  8  2008 man.txt

创建第一个硬链接

[root@CentOS7 testdir]# ln man.txt test/f11
[root@CentOS7 testdir]# ll -i man.txt  test/f11 
15 -rw-r--r--. 2 root root 15978 Aug  8  2008 man.txt
15 -rw-r--r--. 2 root root 15978 Aug  8  2008 test/f11

创建第二个硬链接

[root@CentOS7 testdir]# ln man.txt testdir/f22
[root@CentOS7 testdir]# ll -i man.txt testdir/f22 test/f11 
15 -rw-r--r--. 3 root root 15978 Aug  8  2008 man.txt
15 -rw-r--r--. 3 root root 15978 Aug  8  2008 testdir/f22
15 -rw-r--r--. 3 root root 15978 Aug  8  2008 test/f11

当对一个文件创建多个硬链接时,所有文件的inode相同,权限、大小、时间等属性相同。

[root@CentOS7 testdir]# echo "aaaaaaaaaaaaaaaaaaa" >man.txt
[root@CentOS7 testdir]# ll -i testdir/f22 test/f11 man.txt test/f
15 -rw-r--r--. 4 root root 8 Jul 29 09:49 man.txt
15 -rw-r--r--. 4 root root 8 Jul 29 09:49 testdir/f22
15 -rw-r--r--. 4 root root 8 Jul 29 09:49 test/f
15 -rw-r--r--. 4 root root 8 Jul 29 09:49 test/f11

当向一个文件写入数据,其他文件的属性内容等也会发生变化


硬链接不能跨分区,跨设备创建

[root@CentOS7 testdir]# ln man.txt /roo/a
ln: creating hard link `/roo/a' => `man.txt': No such file or directory


硬链接不能针对目录

[root@CentOS7 testdir]# ln Help/ H
ln: `Help/': hard link not allowed for directory


当删除原始文件后,链接文件仍然可以查看

[root@CentOS7 testdir]# ll -i man.txt man
131 -rw-r--r--. 6 root root 3256 Aug  1 16:54 man
131 -rw-r--r--. 6 root root 3256 Aug  1 16:54 man.txt
[root@CentOS7 testdir]# rm -f man.txt 
[root@CentOS7 testdir]# tail man
  -Z, --ditroff              use groff and force it to produce ditroff
 
  -?, --help                 give this help list
      --usage                give a short usage message
  -V, --version              print program version
    
Mandatory or optional arguments to long options are also mandatory or optional
for any corresponding short options.
 
Report bugs to cjwatson@debian.org.

二、软(soft)链接:

软链接相当于Windows的快捷方式

[root@CentOS7 testdir]# ln -s man.txt man
[root@CentOS7 testdir]# ls -li man.txt man
12 lrwxrwxrwx. 1 root root 7 Jul 29 10:04 man -> man.txt
15 -rw-r--r--. 4 root root 8 Jul 29 09:49 man.txt

创建软链接文件,链接文件会以绿色字体标识并指向原文件,通过观察可以发现两个文件的inode编号不同

 

对原始文件创建软链接文件

[root@CentOS7 testdir]# ln –s man.txt /roo/man.txt
[root@CentOS7 testdir]# ll /root/man.txt
lrwxrwxrwx. 1 root root  7 Aug  1 16:55  /root/man.txt -> man.txt
[root@CentOS7 testdir]# ln –s ../../testdir/man.txt /root/man1
[root@CentOS7 testdir]# ll /root/man1
lrwxrwxrwx. 1 root root  9 Aug  1 16:56 /root/man1 -> ../../testdir/man.txt
 
[root@CentOS7 testdir]# ln -s /testdir/ /root/test1
[root@CentOS7 testdir]# ll -d /testdir/ /root/test1
lrwxrwxrwx. 1 root root  9 Aug  1 17:02 /root/test1 -> /testdir/
drwxr-xr-x. 3 root root 34 Aug  1 16:53 /testdir/

通过上面的实例可以发现软链接可以针对目录,跨分区创建,并且创建的时候要注意路径的问题,如果路径错误,链接文件会保存显示的

软链接时需要注意绝对路径和相对路径,相对于软链接的路径而不是当前目录的路径(指向相对于当前工作目录或某目录的位置)


当删除原始文件后,创建的软链接文件将不能访问

[root@CentOS7 testdir]# ln -s /testdir/man /root/111111
[root@CentOS7 testdir]# ll -i /testdir/man /root/111111
105103873 lrwxrwxrwx. 1 root root   12 Aug  1 17:16 /root/111111 -> /testdir/man
      131 -rw-r--r--. 5 root root 3256 Aug  1 16:54 /testdir/man
[root@CentOS7 testdir]# rm -f /testdir/man 
[root@CentOS7 testdir]# ll /testdir/man /root/111111 
ls: cannot access /testdir/man: No such file or directory
lrwxrwxrwx. 1 root root 12 Aug  1 17:16 /root/111111 -> /testdir/man
[root@CentOS7 testdir]# cat /root/111111 
cat: /root/111111: No such file or directory

三、软硬链接的区别:

软链接和硬链接的区别主要在于:删除原始文件后,软链接将失效,但硬链接仍然可用;软链接适用于文件或目录,但硬链接只可用于文件,不能为目录建立硬链接;软链接与原始文件可以位于不同的文件系统中,但硬链接必须与原始文件在同一文件系统(如一个Linux分区)内。

 

 

原创文章,作者:cyh5217,如若转载,请注明出处:http://www.178linux.com/29045

(0)
上一篇 2016-08-04 21:40
下一篇 2016-08-04 21:40

相关推荐

  • 负载调度器:调度算法

    调度算法(ipvs scheduler) 起点公平:平均分配,不管分别干的怎么样。 结果公平:谁现在还剩下的在处理的少,就分配给谁。      根据其调度时是否考虑各RS当前的负载状态,可分为静态方法和动态方法两种: 静态方法 静态方法:仅根据算法本身进行调度; RR      …

    2016-10-28
  • 国际标准OSI七层模型和事实标准TCP/IP四层模型

    我们知道,标准分为三种:国际标准、国家标准和事实标准。那我们学习的两个重要模型:OSI和TCP/IP模型分别属于国际标准和事实标准,接下来我们来总结一下两种模型的分层及功能还有异同: 一:国际标准OSI模型 OSI:(Open System Interconnect) 开放系统互连,总共分为七层,从下到上顺序为:物理层(physical)、数据链路层(dat…

    2017-09-02
  • bash变量详解

       shell作为用户和Unix/Linux沟通的桥梁,既可以是一个可执行的二进制程序,同时也是一个具备了编程能力的程序设计语言,定义了各种各样的变量和参数,下面介绍一下shell之上的各种变量。 1、本地变量    特性:只对当前shell生效 [root@centos7 ~/bin]#cat …

    Linux干货 2016-08-15
  • N22-妙手-第三周博客作业

    1、列出当前系统上所有已经登录的用户名,注意:同一个用户登录多次,则只显示一次即可。 [root@localhost ~]# who | cut -d' ' -f1 | uniq -c     &nb…

    Linux干货 2016-09-19
  • Linux磁盘管理实操

    Linux磁盘管理实操 1、创建一个10G分区,并格式为ext4文件系统。 先使用fdisk工具创建一个10G的新分区。使用fdisk打开要创建磁盘分区的物理设备fdisk /dev/sdb,然后使用n指令创建新的分区,分区类型选此处选择为主分区,第一个柱面使用默认的1,最后的柱面,使用+10G这种表示方式,表示创建的分区大小为10G。 创建后可以使用p指令…

    系统运维 2016-12-13
  • N22-℡浮生.若夢 ╮第九周作业

    1、写一个脚本,判断当前系统上所有用户的shell是否为可登录shell(即用户的shell不是/sbin/nologin);分别这两类用户的个数;通过字符串比较来实现; #!/bin/bash ## declare -i log_user declare -i notlog_user for i …

    Linux干货 2016-12-12