2011-05-09 114 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

相關問題