码迷,mamicode.com
首页 > 系统相关 > 详细

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

时间:2014-08-01 23:07:12      阅读:392      评论:0      收藏:0      [点我收藏+]

标签:索引   文件系统   结构   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索引节点及值(弄清十分必要),布布扣,bubuko.com

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

标签:索引   文件系统   结构   linux   

原文地址:http://blog.csdn.net/luozhonghua2014/article/details/38342851

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!