Home » Questions » Computers [ Ask a new question ]

Need files off a remote server... best way to get them?

Need files off a remote server... best way to get them?

Was initially trying FTP, but the server doesn't seem to like me very much - it'll go through a bunch of directories, noting that it's already downloaded some of the files, all good. After a few seconds of this, the FTP server becomes unresponsive. Clearly, not a grand solution - but it's somewhat out of my control, since it's a shared host doing this.

Asked by: Guest | Views: 231
Total answers/comments: 2
Guest [Entry]

"It all depends on what the server supports. If SSH is an option, you could use SCP/SFTP/rsync or any number of GUI clients for those protocols. HTTP is another potential option.

But if the server only supports FTP, you could try using a different FTP client to connect.

If you're using a wireless connection, try a wired connection to avoid the potential for interference. Worst case, use a different internet connection to try to avoid problems along the route -- if your cable modem isn't getting it, the neighbor's DSL might."
Guest [Entry]

"I would use rsync if it's possible. You can easily continue copying the files if you get disconnected.

rsync -vurt --progress username@some_host:/home/username/a_dir /home/me/backups"