putty secure copy == pscp,是putty提供的文件传输攻击,通过ssh两件,在两台机器之间安全传输文件
获取pscp工具:http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html,将.exe文件放在windows的system32文件夹下,或者自己设置环境变量。然后在dos命令窗口下即可直接调用。
-r 复制目录下所有文件
-l 对方机器(Linux)用户名(root)
-pw 密码
使用方法:
1.本地Linux系统,拷贝windows系统的文件。
命令格式:pscp localfile user@remoteIP:/filedirectory
拷贝整个目录:pscp -r localDir user@remoteIp:/fileDirectory
例:pscp "D:\linshi20150815\vnsc_0815" root@10.10.86.117:/opt/
2.本地windows,拷贝Linux系统下的文件
命令格式:pscp user@remoteIP:/filedirectory localdirectory
pscp -r root@10.10.86.117:/opt/ "D:\linshi20150815"