Quantcast
Channel: Increase verbosity of running rsync process? - Ask Ubuntu
Browsing latest articles
Browse All 5 View Live

Answer by Flo Rahl for Increase verbosity of running rsync process?

I use rsync -v --stats --progress

View Article



Answer by shgnInc for Increase verbosity of running rsync process?

In addition of -i, you can use --progress for more verbosity in sending data.for example:rsync -ai --progress .....If need more and more the better way is logging it as @Marc M said above.

View Article

Answer by Marc M for Increase verbosity of running rsync process?

I would redirect the output in a file and then tail -f to see the output when desired:rsync -a /foo /bar >/tmp/rsync.log 2>&1when needed:tail -f /tmp/rsync.log

View Article

Answer by pablomme for Increase verbosity of running rsync process?

The rsync documentation does not describe such behaviour, nor is there a (proper or de-facto) standard signal to send to a process in order to modify its verbosity.However thanks to the incremental...

View Article

Increase verbosity of running rsync process?

I'm running 'rsync -a -i /foo /bar'. Every now and then I would like to know what exactly rsync is doing at the moment without having the -v output all the time. Is it possible to increase the...

View Article

Browsing latest articles
Browse All 5 View Live




Latest Images