将大文件上传到服务器的最快方法是什么?

时间:2011-05-09 14:58:14

标签: file-upload

我在服务器上有专门的服务器和大约4 GB的文件。将该文件上传到服务器的最快和最省钱的方法是什么?

2 个答案:

答案 0 :(得分:0)

如果连接断开,FTP可能会产生问题。 SFTP也会遇到同样的问题。 您是否也可以通过互联网公共IP获得自己的计算机? 在这种情况下,您可能会尝试设置一个简单的HTTP服务器(如果您有Windows - 只需设置IIS),然后在专用服务器上使用一些下载管理器(取决于操作系统)通过HTTP下载文件(它可以使用多个流的那些)或通过洪流这样做。 有像http://openbittorrent.com/这样的跟踪器,它们允许您将文件保存在计算机上,然后使用一些torrent客户端将文件上传到专用服务器。

答案 1 :(得分:0)

我不确定您的远程服务器正在运行什么操作系统但是我会使用wget它有一个 - 继续来自手册页:

--continue
Continue getting a partially-downloaded file.  This is useful when
you want to finish up a download started by a previous instance of
Wget, or by another program.  For instance:

               wget -c ftp://sunsite.doc.ic.ac.uk/ls-lR.Z

If there is a file named ls-lR.Z in the current directory, Wget
will assume that it is the first portion of the remote file, and
will ask the server to continue the retrieval from an offset equal
to the length of the local file.

wget二进制文件可用于GNU / Linux / Windows / MacOSX / dos:

http://wget.addictivecode.org/FrequentlyAskedQuestions?action=show&redirect=Faq#download