2011-05-09 46 views
2

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

+2

你考虑过FTP吗? – 2011-05-09 14:59:03

+0

是的,我考虑过FTP,但问题是上传时连接中断,然后再次启动过程。 – Newbie1 2011-05-09 15:01:40

回答

0

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

0

我不知道是什么操作系统上远程服务器在运行,但我会使用wget它已经从该名男子页--continue:

--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

相关问题