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

Jmnote bot (토론 | 기여)님의 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 }}