博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux硬链接和软链接(符号链接)
阅读量:5223 次
发布时间:2019-06-14

本文共 1671 字,大约阅读时间需要 5 分钟。

硬链接与软连接 :

索引节点:

硬链接:

[root@VM_0_11_centos zuo]# vi 1.txt[root@VM_0_11_centos zuo]# ls1.txt  Scrapy[root@VM_0_11_centos zuo]# cp -l 1.txt 11.txt[root@VM_0_11_centos zuo]# ls -litotal 12131601 -rw-r--r-- 2 root root   13 May 28 23:03 11.txt131601 -rw-r--r-- 2 root root   13 May 28 23:03 1.txt131487 drwxr-xr-x 5 root root 4096 May 28 18:20 Scrapy[root@VM_0_11_centos zuo]# vim 11.txt [root@VM_0_11_centos zuo]# more 1.txt hello,world!welcome back!
[root@VM_0_11_centos zuo]# ln 1.txt 111.txt[root@VM_0_11_centos zuo]# ls -li total 16131601 -rw-r--r-- 3 root root   27 May 28 23:06 111.txt131601 -rw-r--r-- 3 root root   27 May 28 23:06 11.txt131601 -rw-r--r-- 3 root root   27 May 28 23:06 1.txt131487 drwxr-xr-x 5 root root 4096 May 28 18:20 Scrapy

 

软连接:

[root@VM_0_11_centos zuo]# vi 1.txt[root@VM_0_11_centos zuo]# cp -s 1.txt 11.txt[root@VM_0_11_centos zuo]# ln -s 1.txt 111.txt[root@VM_0_11_centos zuo]# ls -litotal 8131603 lrwxrwxrwx 1 root root    5 May 28 23:09 111.txt -> 1.txt131089 lrwxrwxrwx 1 root root    5 May 28 23:09 11.txt -> 1.txt131601 -rw-r--r-- 1 root root   13 May 28 23:08 1.txt131487 drwxr-xr-x 5 root root 4096 May 28 18:20 Scrapy

 

[root@VM_0_11_centos zuo]# rm -f 11.txt [root@VM_0_11_centos zuo]# ls -litotal 8131603 lrwxrwxrwx 1 root root    5 May 28 23:09 111.txt -> 1.txt131601 -rw-r--r-- 1 root root   13 May 28 23:08 1.txt131487 drwxr-xr-x 5 root root 4096 May 28 18:20 Scrapy[root@VM_0_11_centos zuo]# rm -f 1.txt [root@VM_0_11_centos zuo]# ls -litotal 4131603 lrwxrwxrwx 1 root root    5 May 28 23:09 111.txt -> 1.txt # 1.txt 红色字体,闪动131487 drwxr-xr-x 5 root root 4096 May 28 18:20 Scrapy

 

转载于:https://www.cnblogs.com/654321cc/p/9102054.html

你可能感兴趣的文章
设计模式-学习
查看>>
button标签点击实现数量加减
查看>>
重置GNOME-TERMINAL
查看>>
quartz 实现调度任务 SchedulerManager
查看>>
new jordans 9 Nets
查看>>
CSS3伪类:target
查看>>
hadoop SecondaryNameNode和NameNode
查看>>
VS2015安装开发ios android
查看>>
网站构建
查看>>
[翻译] FastReport "Text" 对象中使用表达式
查看>>
redis哨兵集群、docker入门
查看>>
laravel学习笔记(三)视图渲染
查看>>
rmdir
查看>>
SGU 219 Synchrograph tarjian找环,理解题意,图论 难度:3
查看>>
[翻译][架构设计]The Clean Architecture
查看>>
状态压缩DP
查看>>
Shell从入门到精通进阶之四:流程控制
查看>>
腾讯QQ、新浪微博等知名社交网络图标素材
查看>>
Django中用 form 实现登录注册
查看>>
关于__int64的使用!
查看>>