SSH登录服务器
2017-09-10 本文已影响7人
MisterZhai
Win下SSH工具
安装 putty
https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html
输入ip和端口 第一次登陆保存服务器公钥
加入环境变量
ssh登陆
putty
上传文件
pscp -P 2205 C:\Users\robin\Desktop\test.txt root@192.168.0.101:/home
上传文件夹
使用“ -r ”选项可以用于传输目录。
基本命令格式:pscp -r 目录 用户名@LinuxIP:目录
或使用命令格式:pscp -l 用户名 -r 目录 LinuxIP:目录
下载文件
pscp -P 2205 root@192.168.0.100:/home/aaa.jpg C:\Users\robin\Desktop\
使用pscp传文件,传目录(-r),要传目录的话可以用psftp