Linuxソフトリンクとハードリンク
:Linux
理解:1.ソフトリンクはパーティション間で使用できますが、ソースファイルは削除できません.
2.ハードリンクはパーティション間では使用できませんが、ソースファイルを削除できます.
[root@localhost ~]# cd /tmp/
[root@localhost tmp]# touch a b c
[root@localhost tmp]# ln -s a aa
[root@localhost tmp]# ln b bb
[root@localhost tmp]# ls -il
total 64
65453 -rw-r--r-- 1 root root 0 Dec 18 19:23 a
65456 lrwxrwxrwx 1 root root 1 Dec 18 19:24 aa -> a # inode
65454 -rw-r--r-- 2 root root 0 Dec 18 19:23 b
65454 -rw-r--r-- 2 root root 0 Dec 18 19:23 bb # inode
65455 -rw-r--r-- 1 root root 0 Dec 18 19:23 c
[root@localhost tmp]# rm a b
rm: remove regular empty file `a'? y
rm: remove regular empty file `b'? y
[root@localhost tmp]# ls -li
total 56
65456 lrwxrwxrwx 1 root root 1 Dec 18 19:24 aa -> a # ,
65454 -rw-r--r-- 1 root root 0 Dec 18 19:23 bb # b,bb
65455 -rw-r--r-- 1 root root 0 Dec 18 19:23 c
: iNode ?( find -inum)