![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Advanced UNIX and Linux questions go here. Expert-to-Expert. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Copying a list of files from one 'server' to another? | Sepia | UNIX for Dummies Questions & Answers | 3 | 09-10-2008 11:44 AM |
| copying directories from NT server to Unix server (solaris 5.8) | jhmr7 | UNIX for Dummies Questions & Answers | 4 | 08-07-2008 10:53 PM |
| copying .profile files to a new server (SCO) | sighbrrguy | UNIX for Dummies Questions & Answers | 2 | 12-05-2007 11:02 AM |
| Copying files from laptop to remote server using SSH | patwa | UNIX for Dummies Questions & Answers | 3 | 11-22-2006 12:14 AM |
| copying files to a remote aix server using tar! | system-admin | AIX | 2 | 11-17-2006 11:30 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
Copying files between 2 Unix server
Is there a simple way to copy data from one server to a different server?
Seems that if 2 servers are on the same network, there should be a simple way to copy between the two. Not just one file. I need to copy a whole directory with subdirectories from one server to a different one. I have a tape drive in each server, however, tapes created on the older server cannot be read by the newer server. UGH!!! I thought about ftp but there isn't a recursive ftp command that I know of. Please just shoot me! |
| Forum Sponsor | ||
|
|
|
||||
|
FTP works great using the recursive option.
I mostly use SSH, however, for all machine to machine copies. www.ssh.com (used to be free for unix-based systems, not sure now, but get the lastest version... older versions had some security problems...) |
|
|||
|
Docboyeee,
You could also use the "tar" command to archive the multiple files into a single file. This file could then be copied to the 2nd server with the utility of your choice (e.g. FTP). If the file is large, you may want to consider compressing it with a program like "gzip" prior to the transfer. Good luck! Biker Systems/Network Administrator LiveFire Labs - Hands-On Technical e-Learning www.LiveFireLabs.com
__________________
Biker Systems/Network Administrator LiveFire Labs - Hands-On Technical e-Learning www.LiveFireLabs.com |
|
|||
|
system A <-> system B
rcp for non-interactive use system B needs a valid IP@ or hostname for systemA in ~/.rhosts (chmod 600 ~/.rhosts), with -r recursive get/put rexec for non-interactive use system A needs a valid entry in the ~/.netrc file with username and password (machine systemB login username password userpassword init macdef) ftp non-recursive ncftpget can do recurseive FTP get with -R ncftpput FTP put, similar to ncftpget wget can do recursive HTTP get with -r ftpcopy can do recursive FTP curl can do a lot of stuff You can also mount a NFS filesystem from the other host to your local and do the traditional (in this case with Kornshell): cd /nfsmountedfilesystem tar cf - .|(cd /localfilesystemtocopyto&&tar xvf -) Or why not pipe trough rsh: rsh "cd /directory&&tar cf - ."|(cd /localdirectory&&tar xvf -) However if this needs some padding and fiddling depending on rsh/rshd implementations. |
|||
| Google The UNIX and Linux Forums |