Answers:
该伪目录用于通过文件的ID号(即inode号)而不是名称来访问文件。例如,/。vol / 234881034/105486是卷#234881034上的文件#105486。
您可以使用找到卷ID和inode stat
。一个例子,使用/etc/hosts
:
$ head -3 /etc/hosts
##
# Host Database
#
$ stat /etc/hosts
234881026 23347035 -rw-r--r-- 1 root wheel 0 1035 "Jul 15 10:11:35 2010" "May 30 20:55:10 2010" "May 30 20:55:11 2010" "May 30 20:47:32 2010" 4096 8 0 /etc/hosts
$ head -3 /.vol/234881026/23347035
##
# Host Database
#
stat
是卷ID和索引节点。./vol
用于通过卷ID和inode访问文件。