Displaying 1 result from an estimated 1 matches for "_bak123".
2004 Apr 28
0
problem with rsync usage across NFS
...) On sun, a textfile file is generated in directory, say, /sun/test/
We use the following to deliver it to the NFS server's empty
direcotry /nfs_path/test/:
rsync --verbose --archive --hard-links --whole-file --delete --delete-after
--exclude='*_bak*' --backup --suffix=_bak123
/sun/test/ /nfs_path/test/
(2) We login to one of Linux clients.
And we do the following
tail -f /nfs_path/test/file
(3) On Sun, we update the file.
And we use the same rsync command as listed in (1) to deliver the
data file.
(4) We login to the same linux machi...