Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there something like USN Journal on Linux filesystem? [closed]

I often use Everything (a search tool) on Windows. It uses USN Journal to speed file name search.

Do Linux filesystems (ext4, xfs, btrfs, etc.) have a similar function to USN Journal?

like image 374
ibear Avatar asked Oct 28 '13 21:10

ibear


1 Answers

The USN journal lets a Windows program keep track of changes to files.

An program on Linux can do the same by using inotify. It allows a program to be notified about every change to the files.

It is not a function of any particular filesystem, but of the kernel's filesystem layer, so it works with any filesystem.

like image 180
Kevin Panko Avatar answered Sep 23 '22 05:09

Kevin Panko