![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Expert-to-Expert. Learn advanced UNIX, UNIX commands, Linux, Operating Systems, System Administration, Programming, Shell, Shell Scripts, Solaris, Linux, HP-UX, AIX, OS X, BSD. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Copying a list of files from one 'server' to another? | Sepia | UNIX for Dummies Questions & Answers | 6 | 05-05-2009 09:15 AM |
| copying directories from NT server to Unix server (solaris 5.8) | jhmr7 | UNIX for Dummies Questions & Answers | 4 | 08-08-2008 01:53 AM |
| copying .profile files to a new server (SCO) | sighbrrguy | UNIX for Dummies Questions & Answers | 2 | 12-05-2007 03:02 PM |
| Copying files from laptop to remote server using SSH | patwa | UNIX for Dummies Questions & Answers | 3 | 11-22-2006 04:14 AM |
| copying files to a remote aix server using tar! | system-admin | AIX | 2 | 11-17-2006 03:30 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | 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! |
|
|||||
|
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 |
|
||||
|
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. ![]() |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|