windows使用的是putty和其附带的pscp
首先配置ubuntu: 1.先使用netstat -tl或service ssh status查看ssh服务是否开启,如果没有开启,用service ssh restart开启,如果没有安装,使用sudo apt-get install openssh-server安装ssh 2.检查防火墙 To Action From 现在到windows中: 打开putty.exe,填入待连接主机IP,port选择22 连接成功:现在就可以像在ubuntu中使用命令行一样了 打开cmd窗口,输入命令: 如将aaa.jpg传到/home下,则: pscp aaa.jpg root@192.168.0.101:/home 传输成功:
ls一下:
成功了! 可以不用root身份而用普通用户身份登陆连接,此时只能将文件传至用户对应的主目录下 从linux向windows传文件: 在windows的cmd中输入 pscp root@hostIp: linux中源文件路径 windows中目的路径 如: pscp root@192.168.0.100:/home/aaa.jpg G:/putty/ 注意:使用pscp只能传文件,无法传目录,要传目录的话可以用psftp
原来地址:http://www.cnblogs.com/ylan2009/archive/2012/01/12/2321126.html |
|