리눅스 하드링크 파일 목록 확인

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 }}