Today's Question:  What does your personal desk look like?        GIVE A SHOUT

 ALL


  Big file transfer in Linux

It's very common that we need to transfer files between two different hosts such as backups. It is also an very simple task, we can use scp or rsync to complete the task well. But what if the file is very big, it may take some time to transfer it. How can we transfer a big file with high speed? Here we propose one solution.Copy fileIf we copy one uncompressed file, then we should follow below steps:Compress dataSend it to another hostUncompress the dataVerify the data integrityThis will be very efficient and it also saves bandwidth.With ZIP+SCPWe can combine ZIP and SCP to achieve this.gzip -c...

7,449 0       LINUX SCP ZIP