配置
老版(cenOS7以下)
首先我们需要查看当前ssh服务是否开启,如果没有开启则需要使用service ssh restart开启。
检查当前ESC是否开启了ssh服务netstat -tl或service ssh status
如果当前ssh没有安装,则通过yum install openssh-clients进行安装。
新版(Centos 7以上)
1.查看sshd服务是否启动
# systemctl status sshd.service
2.如果没有启动,则需要启动该服务:
# systemctl start sshd.service
3.重启 sshd 服务:
# systemctl restart sshd.service
4.设置服务开启自启:
# systemctl enable sshd.service
开始传送文件
(1)使用PuTTy
window像Linux传送文件,我们再doc下,首先我们要进入PuTTy下目录进行操作。
pscp 文件路径+文件名 root@+公网地址:/home/存放的位置
例如:
pscp E:\tmp\apache-tomcat-8.5.14.tar.gz root@xxx.xx.xxx.xxx:/home/tmp
下载文件
从linux向windows传文件
在window的cmd中输入 pscp root@hpstIp:linux中源文件的路径
例如:
pscp root@xxx.xx.xxx.xxx:/home/love.png E:/pic/
(2)使用Xshell
命令行输入:rz,结果提示rz: command not found ,rz命令没有找到。
安装 lrzsz
#yum -y install lrzsz
安装完成后,在当前需要放入文件的地方输入rz即可
#rz
下载
下载一个文件
# sz filename
下载多个文件
# sz filename1 filename2
下载dir目录下的所有文件,不包含dir下的文件夹
# sz dir/*
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。