windows terminal连接远程ssh并传输文件


title: windows terminal连接远程ssh并传输文件
date: 2020-10-19 17:25:02
categories:

  • 计算机软件
    tags:
  • windows terminal
  • ssh

windows terminal是微软官方新推出的终端,备受好评。使用它可以完成ssh远程连接和传输文件的功能,可以舍弃xshell和xftp了。

ssh配置

windows terminal 连接远程 ssh(by-dhslegen)

通过修改windows terminal的setting文件添加ssh会话。不过后面的免密登陆我没成功……不过光前面的已经够用了。

到此完成了使用window terminal连接服务器的终端并能发出指令。

传输文件

使用SSH命令行传输文件到远程服务器(by博客园-Magic.C)

使用scp命令。

上传本地文件到服务器:

scp /path/filename username@servername:/path/

从服务器上下载文件:

scp username@servername:/path/filename /var/www/local_dir(本地目录)

从服务器下载整个目录:

scp -r username@servername:/var/www/remote_dir/(远程目录) /var/www/local_dir(本地目录)

上传目录到服务器:

scp -r local_dir username@servername:remote_dir

你可能感兴趣的:(windows terminal连接远程ssh并传输文件)