linux索引节点及值(弄清十分必要)

 各位看官,

[root@luozhonghua aaa]# ls -l test.c

-rw-r--r--. 1 root root 3 Aug  1 07:49 test.c      #看加粗1    原始test.c文件索引节点值为1,也就是每个文件第一次生成时候都是唯一的1值
[root@luozhonghua aaa]# ln test.c test1.c     #硬链接文件test1.c
[root@luozhonghua aaa]# ls -li test*  
262594 -rw-r--r--. 2 root root 3 Aug  1 07:49 test1.c

262594 -rw-r--r--. 2 root root 3 Aug  1 07:49 test.c         #这里为什么变成2呢,是因为硬链接时自动增1,其实很好理解,linux文件系统就是一个树节点的结构,想想就清楚了

#再看,如果我删除 test.c 看看

[root@luozhonghua aaa]# rm -rf test.c
[root@luozhonghua aaa]# ls -li test*
262594 -rw-r--r--. 1 root root 3 Aug  1 07:49 test1.c     #变回来了吧,注意很多资料说这个值不变,还是2,是错误的。


总而言之,linux就是一个树节点系统,由树节点文件组成,操作一切文件都与树的逻辑相同


linux索引节点及值(弄清十分必要),古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。