[[email protected] ~]# touch test
#建立原始檔
[[email protected] ~]# ln /root/test /tmp/test-hard
#給原始檔建立硬連結檔案 /tmp/test-hard
[[email protected] ~]# ll -i /root/test /tmp/test-hard
262147 -rw-r--r-- 2 root root 0 6月 19 10:06 /root/test
hard
262147 -rw-r--r-- 2 root root 0 6月 19 10:06 /tmp/test-hard
#檢視兩個檔案的詳細資訊,可以發現這兩個檔案的 inode 號是一樣的,"ll"等同於"ls -l"。