add FAQ entry on hard links

This commit is contained in:
Antonio SJ Musumeci 2018-08-18 22:10:23 -04:00
parent fdbafa63ba
commit fc52f89ddc
2 changed files with 9 additions and 0 deletions

View File

@ -624,6 +624,10 @@ MergerFS is **not** an actual filesystem. MergerFS is **not** RAID. It does **no
See the previous question's answer.
#### Do hard links work?
Yes. You need to use `use_ino` to support proper reporting of inodes. Read the section "rename & link" for caveats.
#### Why can't I see my files / directories?
It's almost always a permissions issue. Unlike mhddfs, which runs as root and attempts to access content as such, mergerfs always changes it's credentials to that of the caller. This means that if the user doesn't have access to a file or directory than neither will mergerfs. However, because mergerfs is creating a union of paths it may be able to read some files and directories on one drive but not another resulting in an incomplete set.

View File

@ -1332,6 +1332,11 @@ It merely shards some \f[B]behavior\f[] and aggregates others.
.SS Can mergerfs be removed without affecting the data?
.PP
See the previous question\[aq]s answer.
.SS Do hard links work?
.PP
Yes.
You need to use \f[C]use_ino\f[] to support proper reporting of inodes.
Read the section "rename & link" for caveats.
.SS Why can\[aq]t I see my files / directories?
.PP
It\[aq]s almost always a permissions issue.