标签:磁盘空间 tor 之一 允许 使用 lin 无限 ls -l file
一、LInux软硬链接概念[root@centos7 data]#ln -s f1 f2
[root@centos7 data]#echo "I am f1 file">>f1
[root@centos7 data]#
[root@centos7 data]#cat f1
I am f1 file
[root@centos7 data]#cat f2
I am f1 file
[root@centos7 data]#rm -rf f2
[root@centos7 data]#cat f1
I am f1 file
[root@centos7 data]#cat f2
cat: f2: No such file or directory
[root@centos7 data]#
[root@centos7 data]#ln -s f1 f2
[root@centos7 data]#cat f2
I am f1 file
[root@centos7 data]#rm -rf f1
[root@centos7 data]#cat f2
cat: f2: No such file or directory
[root@centos7 data]#
当删除原始文件f1时,软连接文件无效。
[root@centos7 data]#touch f1
[root@centos7 data]#ln f1 f2
[root@centos7 data]#ls -li
total 0
67 -rw-r--r--. 2 root root 0 Sep 29 15:31 f1
67 -rw-r--r--. 2 root root 0 Sep 29 15:31 f2
[root@centos7 data]#ln -s f1 f3
[root@centos7 data]#ls -li
total 0
67 -rw-r--r--. 2 root root 0 Sep 29 15:31 f1
67 -rw-r--r--. 2 root root 0 Sep 29 15:31 f2
68 lrwxrwxrwx. 1 root root 2 Sep 29 15:31 f3 -> f1
[root@centos7 data]#echo "I am f1 file">>f1
[root@centos7 data]#cat f1
I am f1 file
[root@centos7 data]#cat f2
I am f1 file
[root@centos7 data]#cat f3
I am f1 file
[root@centos7 data]#rm -rf f3
[root@centos7 data]#cat f1
I am f1 file
[root@centos7 data]#cat f2
I am f1 file
[root@centos7 data]#cat f3
cat: f3: No such file or directory
[root@centos7 data]#
标签:磁盘空间 tor 之一 允许 使用 lin 无限 ls -l file
原文地址:http://blog.51cto.com/yy1109lll/2296515