http://askubuntu.com/questions/323775/monitor-watch-running-rsync-process/323782
You can do:
strace -e open $(ps -o lwp= -LC rsync | sed 's/^/-p/')
To see what it's doing, or
lsof -ad3-999 -c rsync
to see what files it currently has opened.
Comments
Post a Comment