scp实现将本地的文件复制到远端

复制test 文件到192.168.xxx.xxx的地址的跟目录/,登陆名称是root

scp test root@192.168.xxx.xxx:/ 

如果出现报错

The authenticity of host ‘192.168.xxx.xx (192.168.xxx.xx)’ can’t be established.
ECDSA key fingerprint is SHA256:xxxxmOCmf3G26VX1rwFh1wArLy4T4k33kEMBl482mgw.
Are you sure you want to continue connecting (yes/no/[fingerprint])?
Host key verification failed.
lost connection

加上“-o StrictHostKeyChecking=no”的选项,去掉对主机的验证检查,当然这只是临时的解决办法

scp test root@192.168.xxx.xxx:/  -o StrictHostKeyChecking=no

你可能感兴趣的:(ARM,服务器,linux,运维)