-- 하드 링크
------------------------------------------------
원본파일과 같은 파일위치정보(inode)를 가지는 파일을 생성, 원본파일이 삭제되어도 독립된 파일위치정보를 가지므로 원본 내용을 참조할 수 있다.
파일만 가능
link 원본파일/디렉토리 새로운파일/디렉토리


-- 소프트 링크
------------------------------------------------
원본파일을 가리키는 파일생성, 파일위치정보를 가지고 있는 원본파일이 삭제되면 링크는 깨진다.
파일, 디렉토리 가능 
link -s 원본파일/디렉토리 새로운파일/디렉토리

기존링크 삭제없이 변경하고 싶다면
link -sfn 하면 기존경로를 교체한다.


-- 파일 링크 테스트
------------------------------------------------

[root@localhost home]# vi test.txt
hello!!!

[root@localhost home]# ln -s test.txt test.s.txt <- 소프트링크
[root@localhost home]# ln test.txt test.h.txt    <- 하드링크

[root@localhost home]# ls -ali test.*
105127406 -rw-r--r-- 2 root root 9 Feb 26 12:16 test.h.txt
105127405 lrwxrwxrwx 1 root root 8 Feb 26 12:19 test.s.txt -> test.txt <- inode가 다름
105127406 -rw-r--r-- 2 root root 9 Feb 26 12:16 test.txt

[root@localhost home]# rm -rf test.txt <- 원본삭제
[root@localhost home]# cat test.s.txt  <- 소프트링크는 링크 깨짐
cat: test.s.txt: No such file or directory
[root@localhost home]# cat test.h.txt  <- 하드링크는 원본 참조 가능
hello!!!
[root@localhost home]# 
[root@localhost home]# echo "This is origin file" > test.txt <- 동일한 파일명으로 재 작성
[root@localhost home]# cat test.s.txt <- 소프트링크 재작성된 원본파일 참조
This is origin file
[root@localhost home]# cat test.h.txt <- 하드링크 원본 정보 보존
hello!!!
[root@localhost home]# ls -ali test.*
105127406 -rw-r--r-- 1 root root  9 Feb 26 12:16 test.h.txt              <- inode가 기존과 같음
105127405 lrwxrwxrwx 1 root root  8 Feb 26 12:19 test.s.txt -> test.txt  <- inode가 기존과 같음
105127407 -rw-r--r-- 1 root root 20 Feb 26 12:24 test.txt                <- inode가 기존과 다른 신규 파일임.

[root@localhost home]#unlink test.s.txt <- 링크삭제
[root@localhost home]#unlink test.h.txt <- 링크삭제