Files
Randell Dawson 0a1eeea424 fix(guide) Replace invalid prism code block names (#35961)
* fix: replace sh with shell

fix replace terminal with shell

fix replace node with js

fix replace output with shell

fix replace cs with csharp

fix replace c++ with cpp

fix replace c# with csharp

fix replace javasctipt with js

fix replace syntax  with js

fix replace unix with shell

fix replace linux with shell

fix replace java 8 with java

fix replace swift4 with swift

fix replace react.js with jsx

fix replace javascriot with js

fix replace javacsript with js

fix replace c++ -  with cpp

fix: corrected various typos

fix: replace Algorithm with nothing

fix: replace xaml with xml

fix: replace solidity with nothing

fix: replace c++ with cpp

fix: replace txt with shell

fix: replace code with json and css

fix: replace console with shell
2019-05-15 19:08:19 +02:00

1.3 KiB
Raw Blame History

title, localeTitle
title localeTitle
How to Use SFTP to Securely Transfer Files with a Remote Server 如何使用SFTP通过远程服务器安全地传输文件

如何使用SFTP通过远程服务器安全地传输文件

本文是关于如何使用安全文件传输协议SFTP与服务器交换文件的快速教程。这对编程很有用因为它允许您在本地编码和测试然后在完成后将您的工作发送到服务器。

测试SSH

如果您还没有请测试您是否能够SSH到服务器。 SFTP使用Secure ShellSSH协议因此如果您无法通过SSH您可能也无法使用SFTP。

ssh your_username@hostname_or_ip_address 

启动SFTP会话

它使用与SSH相同的语法并打开一个可以传输文件的会话。

sftp your_username@hostname_or_ip_address 

要列出有用的命令:

help 

传输文件和文件夹

要下载文件:

get <filename> 

要下载文件夹及其内容,请使用“-r”标志也可用于上载

get -r <foldername> 

要上传文件:

put <filename> 

更改文件夹

要更改本地文件夹:

lcd <path/to/folder> 

要更改远程文件夹:

cd <path/to/folder>