2013年3月11日 星期一

[ln] Hard link VS Soft link

Experiment :
[oracle@Linux]$ touch f1          #Create f1
[oracle@Linux]$ ln f1 f2          #f2 Hard link to f1
[oracle@Linux]$ ln -s f1 f3       #f3 Soft link to f1
[oracle@Linux]$ ls -li            # -i show the information about inode
total 0
9797648 -rw-r--r--  2 oracle oinstall 0 Apr 21 08:11 f1
9797648 -rw-r--r--  2 oracle oinstall 0 Apr 21 08:11 f2
9797649 lrwxrwxrwx  1 oracle oinstall 2 Apr 21 08:11 f3 -> f1

Conclusion:

1).Delete f3 -> f1 and f2 no any affect.
2).Delete f2 -> f1 and f3 no any affect.
3).Delete f1 -> f2 no any affect and f3 (soft link) failure.
4).Delete f1 and f2 -> whole f1 and f2 are disapear.

Reference :

0 意見:

張貼留言