Best and Fastest Way to big copy files from server to PC

Discussion in 'Site & Server Administration' started by Fl1p, May 8, 2008.

  1. #1
    Hey guys,

    What's the best and fastest way to copy files from my server to my PC?

    I have over 1400+ flash files totaling 1.80+GB and I want to copy all of them to my PC.

    I can only think of FTP but was wondering if there's any a best way to do it via SSH or something.

    I have root access to the server but I don't know much about SSH commands and all that.

    Thanks
     
    Fl1p, May 8, 2008 IP
  2. coolraghav

    coolraghav Well-Known Member

    Messages:
    326
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    130
    #2
    rsync is good option.

    use
    rsync -avr --progress -e
     
    coolraghav, May 8, 2008 IP
  3. olddocks

    olddocks Notable Member

    Messages:
    3,275
    Likes Received:
    165
    Best Answers:
    0
    Trophy Points:
    215
    #3
    you can also use SCP using cpanel backup to download to remote host. just specify port, username and passwd of remote server.
     
    olddocks, May 8, 2008 IP
  4. RyanMaffit

    RyanMaffit Peon

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    One way you can do it is login to SSH using the site's username and password, then change to the directory where the files are (cd) and then run the following command:
    zip-r files.zip folder/
    Code (markup):
    this will create a ZIP file which you can download to your computer and unzip. (Note: You can use * instead of folder/ to include all files in the current directory as well)

    Hope this helps.
     
    RyanMaffit, May 10, 2008 IP