|
|
|
|
|
by mardifoufs
755 days ago
|
|
Is there a Linux equivalent for those "filters"? I'm a bit clueless about win32 and NT sadly enough... Would that mean that there's no way to "scope" the MFTs? Edit:
That also makes sense, since if I got it right they aren't necessarily supposed to be consumed by userspace programs? I guess that's why those tools always ask for admin access and basically all perms to the FS. It's a bit sad that the user gets exposed to a much slower search and FS experience even if the system underneath has the potential to be as fast as it gets. And I don't think ReFS is intended to replace NTFS (not that it's necessarily more performant anyways) |
|
Linux has device mappers (dm-crypt, dm-raid and friends). But those sit below the file system, emulating a device. Window's file system filter drivers sit above the file system, intercepting API calls to and from the file system. That's super useful if you want to check file contents on access, track where files are going, keep an audit log of who accessed a file, transparently encrypt single files instead of whole volumes, etc. But you pay the price for all that flexibility in performance.