一.实验环境
两台可以通信的主机
rhel7: 192.168.1.20
rhel8: 192.168.1.10
二.scp命令
scp 本地文件 远程主机用户@远程主机ip:远程主机目录
scp 远程主机用户@远程主机ip:远程主机目录 本地文件
实验步骤:
1.在rhel7.6建立文件和目录
[root@rhel7 mnt]# touch file
[root@rhel7 mnt]# mkdir filedir
2.测试
a)把本地主机复制到远程主机
[root@rhel7 mnt]# scp file [email protected]:/mnt
file 100% 0 0.0KB/s 00:00
[root@rhel7 mnt]# scp -r filedir [email protected]:/mnt
[root@rhel7 mnt]# scp -q file [email protected]:/mnt
b) 把远程文件复制到本地
[root@rhel7 mnt]# scp [email protected]:/mnt/rhel8.0_file .
rhel8.0_file 100% 0 0.0KB/s 00:00