Hardlinks not having the same inode number #1383
marktitorenkov
started this conversation in
General
Replies: 1 comment 5 replies
-
You appear to be comparing inside and outside mergerfs mount. You should be comparing within the same mount. inodes are only unique within a filesystem. They can be the same across different filesystems. mergerfs could, but doesn't, just return the inode because that isn't unique enough given it is combining multiple filesystems. It has to create it's own and that is defined by the inodecalc option. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I don't think this is an issue with the software but rather something I have misconfigured so not raising an issue.
What could be the reason for my hardlinked files not having the same inode numbers?
This is my config
Both
/mnt/files1
and/mnt/files2
are zfs datasets.If I have let's say two files in
/mnt/files1/test
that are hardlinks if i dothey have the same inode numbers
but if I do
they are different.
Any suggestions?
Beta Was this translation helpful? Give feedback.
All reactions