inode 和只读绑定挂载

inode 和只读绑定挂载

我正在使用xfs文件系统,谈到 inode 主题时有一个问题:RO绑定挂载点会消耗 inode 吗?

信息严格来说,是相同的;因为绑定挂载指向同一文件系统中的目录。

可以df -i很好地看到 inode 的消耗。

答案1

绑定目录中的文件具有与原始文件完全相同的 inode。因此,它不会消耗任何东西。

但你可以自己做测试:

root@storiq-nas10:/mnt/raid# df -i .
Sys. de fichiers         In?uds IUtil.     ILibre IUti% Monté sur
/dev/mapper/vg0-raid 7497565248    107 7497565141    1% /mnt/raid
root@storiq-nas10:/mnt/raid# mount -B test/ bind/
root@storiq-nas10:/mnt/raid# df -i .
Sys. de fichiers         In?uds IUtil.     ILibre IUti% Monté sur
/dev/mapper/vg0-raid 7497565248    107 7497565141    1% /mnt/raid
root@storiq-nas10:/mnt/raid# cd bind/dir/hello/
root@storiq-nas10:/mnt/raid/bind/dir/hello# ls -i 34.txt 
4294967458 34.txt
root@storiq-nas10:/mnt/raid/bind/dir/hello# cd /mnt/raid/test/dir/hello/
root@storiq-nas10:/mnt/raid/test/dir/hello# ls -i 34.txt 
4294967458 34.txt

相关内容