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

5번째 줄: 5번째 줄:
<source lang='bash'>
<source lang='bash'>
find / -samefile 파일명 2>/dev/null
find / -samefile 파일명 2>/dev/null
</source>
<source lang='bash'>
find / -inum 아이노드번호 2>/dev/null
</source>
</source>



2016년 4월 27일 (수) 02:25 판

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