码迷,mamicode.com
首页 > 系统相关 > 详细

linux 远程拷贝文件: scp

时间:2017-05-18 16:45:45      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:选项   ref   chmod   文件拷贝   chm   body   成功   解决方案   config   

linux 远程拷贝 :scp

 
scp 文件名  root@远程ip:/路径/ 
 
将本地home目录下的test.tar的文件拷贝到远程主机192.168.1.23的/home/adm/目录下,则命令为:scp /home/test.tar root@192.168.1.23:/home/adm/  回车后输入密码就可以了 
 
scp提供了几个选项  在scp后加就行了 
 
    -p 拷贝文件的时候保留源文件建立的时间。 
    -q 执行文件拷贝时,不显示任何提示消息。 
    -r 拷贝整个目录   www.2cto.com  
    -v 拷贝文件时,显示提示信息。 

 

Linux 下scp传文件时错误 scp: /usr/tools: not a regular file 不能成功传送 解决方案

1:有可能没权限 chmod 777
2:  在使用scp时加上-r 参数
scp -r root@192.168.16.5:/usr/tools/xxxx

 
报错:
Permanently added (RSA) to the list of known hosts问题解决
修改本机配置。
1
    /etc/ssh/ssh_config 中的
2
#  StrictHostKeyChecking ask 改成
3
   StrictHostKeyChecking no

linux 远程拷贝文件: scp

标签:选项   ref   chmod   文件拷贝   chm   body   成功   解决方案   config   

原文地址:http://www.cnblogs.com/mnote/p/6873758.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!