"리눅스 하드링크 파일 목록 확인"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-==참고 자료== +==참고==))
 
37번째 줄: 37번째 줄:
*[[하드링크]]
*[[하드링크]]


==참고 자료==
==참고==
* http://unix.stackexchange.com/questions/73538/list-all-files-with-the-same-inode-number
* http://unix.stackexchange.com/questions/73538/list-all-files-with-the-same-inode-number


[[분류: 파일시스템]]
[[분류: 파일시스템]]

2017년 7월 11일 (화) 04:27 기준 최신판

1 개요[ | ]

리눅스 하드링크 파일 목록 확인
inode 번호 같은 파일 찾기
find / -samefile 파일명 2>/dev/null
find / -inum 아이노드번호 2>/dev/null

2 실습[ | ]

root@zetawiki:~# echo hello > a.txt
root@zetawiki:~# ln a.txt /tmp/b.txt
root@zetawiki:~# stat a.txt | grep Inode
Device: fc00h/64512d	Inode: 138426      Links: 2
root@zetawiki:~# stat /tmp/b.txt | grep Inode
Device: fc00h/64512d	Inode: 138426      Links: 2
root@zetawiki:~# find / -samefile a.txt 2>/dev/null
/tmp/b.txt
/root/a.txt
root@zetawiki:~# find / -inum 138426 2>/dev/null
/tmp/b.txt
/root/a.txt

3 같이 보기[ | ]

4 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}