下图展示下软链接的访问过程:
文章插图
例如:
# ls -litotal 0// 可对不存在的文件创建软链接 # ln -s test.file test_soft.link# ls -liFtotal 0789467 lrwxrwxrwx 1 root root 8 Sep 1 18:00 test_soft.link -> test.file// 由于被指向的文件不存在,此时的软链接 test_soft.link 就是死链接 # cat test_soft.linkcat: test_soft.link: No such file or directory// 创建被指向的文件 test.file,test_soft.link 恢复成正常的软链接 # echo "This is an original file_A" >> test.file# cat test_soft.linkThis is an original file_A// 对不存在的目录创建软链接 # ln -s test.dir test_soft.link.dir# mkdir -p test.dir/test# tree . -F --inodes. ├── [ 789497] test.dir/ │ └── [ 789498] test/ ├── [ 789495] test.file ├── [ 789495] test_soft.link -> test.file └── [ 789497] test_soft.link.dir -> test.dir/具体的解释:略
推荐阅读
- 叶子有毛的朱砂根 朱砂根叶子下垂没光泽啦怎么办
- 最实用的20个 Python系统运维常用库,学Python要认真
- 移动端的未来为什么是Flutter?
- Redis 的主从搭建架构
- 详解基于linux环境MySQL搭建与卸载
- 数据库漏洞安全防护技巧
- 程序员常说的CDN是什么?
- 万重山的扦插图解 万重山怎么繁殖
- 你了解大型网站的页面静态化吗?
- C语言中的最常用的两种排序算法你知道吗?