server to server transfer anyone?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • The Truth Hurts
    Zph7YXfjMhg
    • Nov 2002
    • 15747

    #1

    server to server transfer anyone?

    is there a tool, or command line that I can use to get a file from one server to another?

    I've got theis 600 MB tar file I need to move from one host to another, and dl/up would take too long ; )
  • liquidmoe
    Confirmed User
    • Mar 2002
    • 4994

    #2
    man scp

    scp username@server:/path/to/file /local/place/to/put/file

    Take Luck!

    Comment

    • [Labret]
      Registered User
      • May 2001
      • 10945

      #3
      errrr ftp?

      Comment

      • The Truth Hurts
        Zph7YXfjMhg
        • Nov 2002
        • 15747

        #4
        thx liquid moe, i'll give it a shot...

        [Labrat] i'm a graphics guy, and not too technically inclined ; )

        Comment

        • The Truth Hurts
          Zph7YXfjMhg
          • Nov 2002
          • 15747

          #5
          shit sometimes i forget phatservers has the fastest support crew i've ever seen..

          wget file..

          damn almost too easy.

          Comment

          • rudeboi
            Confirmed User
            • Jun 2003
            • 262

            #6
            The best way is to use scp, rsync, or wget depending on the situation .. scp/rsync if you have to loginto a server, wget if itt's just available via fto or www.

            In general, get into the habit of using rsync. Rsync is very useful, ESPECIALLY for moving around large directory structures or doing backups. Rsync has a great algorithm for detecting changes in files, and changes files in directory structures.. It uses this to do great differential copies..

            If you're mirroring a tree with thousands of files, rsync is definately the way to go.. it can give 200-300% speedups on large trees.. a common command line would be :

            rsync -e ssh -avcz server1:/path/to/files server2:/path/to/files

            I use this for syncing up 8 geographically distributed webservers from one central "gold" server.
            ----------------------------------------------
            Systems Architect
            http://www.bitpusher.com/

            Comment

            Working...