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

잔글 (봇: 자동으로 텍스트 교체 (-==참고 자료== +==참고==))
 
(다른 사용자 한 명의 중간 판 6개는 보이지 않습니다)
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>


==실습==
==실습==
<source lang='console'>
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
</source>
<source lang='console'>
root@zetawiki:~# find / -samefile a.txt 2>/dev/null
/tmp/b.txt
/root/a.txt
</source>
<source lang='console'>
root@zetawiki:~# find / -inum 138426 2>/dev/null
/tmp/b.txt
/root/a.txt
</source>


==같이 보기==
==같이 보기==
*[[리눅스 inode 번호로 파일 찾기]]
*[[리눅스 하드링크 생성 실습]]
*[[리눅스 하드링크 개수 확인]]
*[[리눅스 find]]
*[[하드링크]]
*[[하드링크]]


==참고 자료==
==참고==
* 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 }}