标签:权限 内容 -- block 多个 查看 硬链接 不能 链接
-rw-r--r--. 1 root root 0 May 19 14:53 f1
文件类型、权限、所属着、创建时间等)和inode节点号,在同一个分区中i节点是唯一的,每一个文件都有不同的i节点。
[root@centos1 data]#ln txt txt.hard # 创建硬链接
[root@centos1 data]#ll -i
total 8
67 -rw-r--r--. 2 root root 9 May 19 15:46 txt
67 -rw-r--r--. 2 root root 9 May 19 15:46 txt.hard
[root@centos1 data]#ln -s txt txt.soft #创建软链接
[root@centos1 data]#ll -i
total 4
67 -rw-r--r--. 1 root root 9 May 19 15:46 txt
68 lrwxrwxrwx. 1 root root 3 May 19 16:00 txt.soft -> txt
[root@centos1 data]#echo 111 >> txt.soft
[root@centos1 data]#cat txt.soft
12312xxx
111
[root@centos1 data]#cat txt
12312xxx
111
可以看到软链接和原文件inode不一样,他们是不同文件,修改软链接原文件也改变,删除原文件软链接不可用,作用类似windows中的快捷方式,一个符号链接的内容是它引用文件的名称
可以对目录进行
可以跨分区
指向的是另一个文件的路径;
其大小为指向的路径字符串的长度;不增加或减少目标文件inode的引用计数
软链接访问文件 --> 链接文件对应的inode -->链接文件的block记录的是源文件的inode --> 源文件inode --> 源文件数据
标签:权限 内容 -- block 多个 查看 硬链接 不能 链接
原文地址:https://blog.51cto.com/14322729/2396960