千家信息网

根据 inode number 查找文件

发表于:2025-01-20 作者:千家信息网编辑
千家信息网最后更新 2025年01月20日,root@pc0003:~/test# touch haharoot@pc0003:~/test# ln haha haha123root@pc0003:~/test# ls -li总用量 01074
千家信息网最后更新 2025年01月20日根据 inode number 查找文件


root@pc0003:~/test# touch haha
root@pc0003:~/test# ln haha haha123

root@pc0003:~/test# ls -li
总用量 0
10740018 -rw-rw-r-- 2 chunli chunli 0 1月 20 15:32 haha
10740018 -rw-rw-r-- 2 chunli chunli 0 1月 20 15:32 haha123


root@pc0003:~/test# find / -inum 10740018
/home/chunli/test/haha123
/home/chunli/test/haha


0