软连接会不会有Bug?

来源:3-5 Linux链接命令

DF_Be_happy

2017-03-25 20:16

软连接会不会有Bug? 

ln -s sourceFile targetFile;

rm -rf sourceFile;

touch sourceFile;

前后两个sourceFile的i节点是不一样的,但是targetFile能够链到两个不同的sourceFile去。这种设定是不是有点不合理啊,而且跟老师讲的,数据块里面存的是sourceFile的i节点等信息这一说法,不一致。

temp@temp:~/20170325$ ls -il

total 24

9045987 lrwxr-xr-x  1 temp  staff   7  3 25 19:56 122.a -> 123.txt

9046693 -rw-r--r--  1 temp  staff   7  3 25 20:05 123.txt

temp@temp:~/20170325$ rm 123.txt


temp@temp:~/20170325$ touch 123.txt

temp@temp:~/20170325$ ls -il

total 16

9045987 lrwxr-xr-x  1 temp  staff   7  3 25 19:56 122.a -> 123.txt

9046880 -rw-r--r--  1 temp  staff   0  3 25 20:07 123.txt


写回答 关注

1回答

  • 慕粉2001077358
    2017-03-25 23:19:04

    应该没有


Linux达人养成计划 I

Linux入门视频教程,以通俗易懂的语言带你感受linux之美

399344 学习 · 3791 问题

查看课程

相似问题