#創建硬鏈接 [root@localhost ~]# ln /etc/fstab /tmp/test/ln_test #查看其文件屬性,文件屬性一樣, 引用鏈接計數變為2 [root@localhost ~]# ll /etc/fstab /tmp/test/ln_test -rw-r--r--. 2 root root 783 Sep 15 09:52 /etc/fstab -rw-r--r--. 2 root root 783 Sep 15 09:52 /tmp/test/ln_test #創建符號鏈接 [root@localhost ~]# ln -s /etc/fstab /tmp/test/ln_test_symbolic #文件屬性 [root@localhost ~]# ll /etc/fstab /tmp/test/ln_test_symbolic -rw-r--r--. 2 root root 783 Sep 15 09:52 /etc/fstab lrwxrwxrwx. 1 root root 10 Sep 15 21:14 /tmp/test/ln_test_symbolic -> /etc/fstab