trying to make sense of rsync output...


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers trying to make sense of rsync output...
# 1  
Old 06-11-2009
trying to make sense of rsync output...

I'm running the following rsync command to sync a directory between the 2 servers:

Code:
rsync -az --delete --stats /some_dir/ server_name:/some_dir

I'm getting the following output:

Code:
Number of files: 655174
Number of files transferred: 14221
Total file size: 1138531979331 bytes
Total transferred file size: 34268450432 bytes
Literal data: 34268393973 bytes
Matched data: 858 bytes
File list size: 40480982
File list generation time: 73.776 seconds
File list transfer time: 0.000 seconds
Total bytes sent: 22761328925
Total bytes received: 334668

sent 22761328925 bytes  received 334668 bytes  1153862.25 bytes/sec
total size is 1138531979331  speedup is 50.02

I'm not quite sure how much data was actually transferred. It is the "Total bytes sent"? Then what is "Total transferred file size"? How mush data was actually copied between the servers? Just by common sense, I'm guessing "Total bytes sent" is what was transferred, and it's smaller because of the compression. Am I correct, or am I looking at the wrong numbers?

Also it would be nice if rsync reported how much time it took, is there another switch to get that info?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Does it make sense to reduce the total shared memory

We have several dozen Redhat 5, 6 and 7 servers that are running Oracle databases. On some databases we are using automatic memory management, which uses shared memory. On other databases we are use manual memory management, which does not use shared memory. When I see that a server is swapping... (2 Replies)
Discussion started by: gandolf989
2 Replies

2. UNIX for Dummies Questions & Answers

Make-output

hi dear i need help about following command that i require for installing szip software ./configure --prefix=/usr/local make all install >& make-output my question is what >& make-output command do? does it make folder called make-output?:confused: thanks in advance fereshte Use... (2 Replies)
Discussion started by: komijani
2 Replies

3. Cybersecurity

Root login in Linux - does it make sense?

I stumbled upon this thread and one aspect of it got me thinking. As i am building a small Linux network right now for a friend i would like to hear your opinion on this. I'd like to respectfully disagree. I think the Linux habit of disabling root login per default is wrong (not entirely... (6 Replies)
Discussion started by: bakunin
6 Replies

4. UNIX for Advanced & Expert Users

Limiting size of rsync batch output

Anyone know if there's a way to limit the size of rsync batch output blob? I need each batch to fix on a 64GB USB key. Using syntax like: rsync -av --only-write-batch=/Volumes/usb/batch --stats /Users/dfbadmin/sandbox/ /Users/dfbadmin/archives/ (7 Replies)
Discussion started by: dfbills
7 Replies

5. UNIX for Advanced & Expert Users

sar -d output... does not make sense

Can someone explain the correlation between how sar names the disk drives and how the rest of the OS names the disk drives? sar lists my disk drives as sd0, sd1, sd2, etc..... while format lists my disk drives as c1t0d0, c1t1d0, c1t2d0,etc... And also why sar shows 8 disks but format... (2 Replies)
Discussion started by: s ladd
2 Replies

6. Shell Programming and Scripting

Redirecting output of Make to file

Hi, I am unable to get this script to work as desired. Basically, if an argument "log" is sent into the script, it outputs the result of the Make to a file output.log. However, if the argument is not passed, I want the output to be just put on screen (no redirection). See code snippet below. #... (3 Replies)
Discussion started by: srujan45
3 Replies

7. UNIX for Dummies Questions & Answers

a for loop that doesn't make sense

I've been referring bash info for processes and came across a structure for a process which is defined like typedef struct process { struct process *next; char ** argv . . . }process; What I don't understand is that in the program there's a for loop which goes like this job... (2 Replies)
Discussion started by: sdsd
2 Replies

8. High Performance Computing

Rocks clusters make sense for educational environments

08-18-2008 11:00 AM Cluster computing has played a pivotal role in the way research is conducted in educational environments. Because the amount of available money and hardware varies between university researchers, often it's necessary to find a clustering solution that can work well on a small... (0 Replies)
Discussion started by: Linux Bot
0 Replies

9. Shell Programming and Scripting

how to make a line BLINKING in output and also how to increase font size in output

how to make a line BLINKING in output and also how to increase font size in output suppose in run a.sh script inside echo "hello world " i want that this should blink in the output and also the font size of hello world should be big .. could you please help me out in this (3 Replies)
Discussion started by: mail2sant
3 Replies

10. Solaris

Making sense of df -k & format verify output

I'm posting the output from two disks on my Solaris machine. The first part is the output from using the format command and then using the verify option on each disk. The last part is the output from my df -k command. I'm trying to match the partition to the filesystem/mount point. I'm assuming... (13 Replies)
Discussion started by: gonzotonka
13 Replies
Login or Register to Ask a Question