The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #5 (permalink)  
Old 04-07-2008
ashayh ashayh is offline
Registered User
  
 

Join Date: Apr 2008
Posts: 3
You could look at rsync+ssh, and give ssh the "blowfish" encryption option as it is supposed to be faster than the default.

Like so:
Code:
rsync -avz --ignore-existing -e  'ssh -oConnectTimeout=10 -c blowfish -ax' source-file destserver:/dest/path
Advantage of rsync is that it can resume a broken transfer.

You could also try regular scp with:
Code:
 -c blowfish -C
[ -C is for compression ]

You could also try piping the large file through tar+gzip as described here: here and here

If you can download using HTTP, aget is another option.

All this may not make much of an impact if your file cannot be compressed, or if your network is too slow.