linux inotify - 确定触发事件的用户
我试图弄清楚如何确定在使用 inotify 监视某些文件时触发特定事件的用户。这可能吗? inotify_event结构有类似的东西吗?
I am trying to figure out how to determine the user which triggered a specific event when monitoring some files with inotify. Is that even possible? Does the inotify_event structure has something like this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
inotify_event
没有相应的字段。由于 inotify 是异步的,因此您也无法捕获用户的行为。您考虑过使用保险丝文件系统吗?我认为 LoggedFS (GPL2+) 符合要求。
inotify_event
doesn't have a field for that. Since inotify is asynchronous you can't catch the user in the act either.Have you considered a fuse filesystem? I think LoggedFS (GPL2+) fits the bill.