martinpitt / fatrace

report system wide file access events
GNU General Public License v3.0
173 stars 12 forks source link

`fatrace: Failed to add watch for .: No such device` on FUSE mount #26

Closed rbutoi closed 1 year ago

rbutoi commented 1 year ago

On my ntfs-3g mounted external drive:

❯ sudo fatrace -c -t
fatrace: Failed to add watch for .: No such device

This works (great, I should add!) on ext4 drives -- any ideas here?

martinpitt commented 1 year ago

There's not much that fatrace can do if fanotify_mark() does not work on a particular file system. I would not expect this to ever work for FUSE file systems, as these are not under the kernel's control.

rbutoi commented 1 year ago

Thanks for the quick response and explanation!