what is the difference between rsync and scp in linux ?
RSYNC: 1.incrementanl data's 2.rsync will not be faster but data's integrity and If you repeat the copy, rsync may be faster as it only transfers differences in files. 3.rsync isn't necessarily encrypted and not more secure if want use rsync -avze ssh, then rsync would be as secure 4.Before a file is transferred rsync takes the checksums,After a file is transferred the receiver verifies the data integrity 5.rsync can also exclude certain subdirectories/files using the --exclude flag, scp can't do that. 6.-P flag which will display a progress 7. it automatically verifies if the transferred file has been transferred correctly. Scp will not do that, Example: Sending folder to remote location using rsync # rsync -avzWe ssh --include 'R*' --exclude '*' --progress oracle@192.168.2.181:/home/oracle # rsync -avzWe ssh --progress /home/oracle/database oracle@192.168.2.181:/home/oracle/ W-you can see the bandwidth SCP 1.Overwrite the data's 2.scp will be...