Linux

將文件從遠端 Linux 傳輸到 Windows 的最快方法?

  • August 14, 2018

我需要通過 Internet 將文件(~15 Mb)從遠端 Linux 機器傳輸到本地 Windows 機器,我只是想知道最好的方法是什麼?Linux 機器是位於防火牆後面的伺服器,因此需要打開其他埠的解決方案可能不適合。我目前通過 SSH(Putty) 連接到 Linux 機器,我更喜歡使用命令行。

提前致謝。

如果您更喜歡命令行,請在本地機器上嘗試可愛的 Putty 人員提供的 pscp.exe。

pscp.exe <user>@<remote ip>:<remote file> <local file>
e.g. pscp.exe smith@122.100.150.161:/etc/hosts ./hosts

http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html

我會scp試一試。如果你想要一個 GUI,或者WinSCP 。

引用自:https://serverfault.com/questions/175949