티스토리 뷰
하드링크와 심볼릭링크 차이. Diff btw Hard link & Symbolic link
sai505 2012. 11. 19. 18:00파일의 링크 두 종류 하드링크와 심볼릭 링크. 원본파일이 'inode1'을 사용하면 하드링크도 'inode1'을 사용하게되지만, 심볼릭 링크는 'inode2'를 만들어서 사용한다. 데이터는 원본파일과 연결된다. 윈도우의 바로가기 아이콘과 같은 개념.
There are two types of link; hard link and symbolic link. When original file uses 'inode1'. hard link uses 'inode1' as well, but symbolic link makes 'inode2' and links data to original file. Symbolic is same idea as shortcut icon in windows.
1. create /root/linktest and 'basefile' file inside the directory.
2. use 'ln' command to create hard link file and symbolic file.
=> ~]# ln basefile hardlink
~]# ln -s basefile softlink
youll see basefile and hardlink have same inode#, unlike softlink
3. Compare hard link and soft link
=> ~]# cat hardlink
4. Move original file to somewhere and compare those links again
Now you got the ideas of hardlink and symbolic link
'ORACLE DB > Linux Server' 카테고리의 다른 글
Use yum instead rpm. mysql 패키지package 설치install. (0) | 2012.11.20 |
---|---|
rpm의 문제점. Down of rpm command (0) | 2012.11.19 |
사용자에게 파일 배포. Distribute file to new users by /etc/skel (0) | 2012.11.19 |
CD USB MOUNT 마운트하기. ISO파일 생성 및 사용.Create ISOfile and use it (0) | 2012.11.19 |
Samba Client- Fedora에서 Windows 폴더 사용. Share Windows Folders on Fedora. (0) | 2012.11.19 |