![]() |
|
|
google unix.com
|
|||||||
| Forums | Casino | Register | Forum Rules | Links | Albums | FAQ | Members List | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Split large file and add header and footer to each file | ashish4422 | Shell Programming and Scripting | 1 | 04-15-2008 06:12 AM |
| Strange difference in file size when copying LARGE file.. | 0ktalmagik | Filesystems, Disks and Memory | 1 | 06-03-2006 07:34 PM |
| Importing dump file | anushilrai | Shell Programming and Scripting | 2 | 03-20-2006 05:56 AM |
| making copy of 0 level dump via ufsdump | vishalsngh | SUN Solaris | 2 | 01-27-2006 10:25 AM |
| help, what is the difference between core dump and panic dump? | aileen | UNIX for Dummies Questions & Answers | 1 | 06-11-2001 08:08 PM |
![]() |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|||
|
Copy large dump file
Hi Experts..
Could anyone please let me know the easier way to copy large dump of files from one server to another. I am trying to copy a set of dump files on two different servers placed in different geographic locations.. Though there are other factors such as latency, etc., slowing up the process, i am curious to know if there are any other method to copy it fast.. I am using scp functionality to copy at present.. Thanks in advance !! |
| Sponsored Links |
|
|||
|
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 You could also try regular scp with: Code:
-c blowfish -C 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. |
|||
| Google The UNIX and Linux Forums |
![]() |
| Bookmarks |
| Tags |
| None |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|