计算机基础
linux
【Q114】如何查看一个文件的 inode number

如何查看一个文件的 inode number

Issue 欢迎在 Gtihub Issue 中回答此问题: Issue 115 (opens in a new tab)

Author 回答者: shfshanyue (opens in a new tab)

可以使用 ls 或者 stat

$ stat hello.txt
  File: ‘hello.txt’
  Size: 30              Blocks: 8          IO Block: 4096   regular file
Device: fd01h/64769d    Inode: 917526      Links: 1
Access: (0644/-rw-r--r--)  Uid: (    0/    root)   Gid: (    0/    root)
Access: 2019-12-10 16:15:55.253325208 +0800
Modify: 2019-12-10 16:15:52.740653330 +0800
Change: 2019-12-10 16:15:52.742653069 +0800
 
$ ls -i hello.txt
917526 hello.txt