Displaying 2 results from an estimated 2 matches for "chglog".
Did you mean:
buglog
2005 Apr 13
5
An idea: rsyncfs, an rsync-based real-time replicated filesystem
...ically reporting the
names of the paths (files and directories) that have changed to a named
pipe (a FIFO) that it places in the root of the mounted filesystem it is
managing. So, when rsyncfs is managing a filesystem with an empty root
directory, one should expect to see a named pipe called "chglog.fifo", and
if one cats that named pipe she will see a constant stream of pathnames
that the "VFS Change Logger" has noted changes to.
The actual replication happens in user-land with rsync as the transport.
I think rsync will have to be tweaked a little to make this work, but
given...
2006 Sep 26
1
An idea: rsyncfs, an rsync-based real-time replicated filesystem
...> > I think rsync will have to be tweaked a little to make this work, but
> > given all the features already in rsync I don't think this will be a big
> > deal. I envision an rsync running on Host A like:
> >
> > # rsync --constant --from0 --files-from-fifo=/vol/0/chglog.fifo ...
> >
> > that will be communicating with an "rsync --constant ..." on the other
> > end. The --constant flag is my way of stating that both rsyncs should
> > become daemons and plan to "constantly" exchange syncing information until
> > kil...