红联Linux门户
Linux帮助

linux"scp"命令拷贝一个目录到服务器时报"not a regular file

发布时间:2017-01-04 10:57:42来源:linux网站作者:jun1019
今天在linux命令行使用scp命令拷贝一个目录到另一台服务器的时候,报如下错误:
[root@hadoop01 ~]# scp flume -r hadoop02:/root/apps
flume: not a regular file
-r: No such file or directory
[root@hadoop01 ~]# scp flume hadoop02:/root/apps/
flume: not a regular file
 
原来在使用scp拷贝一个目录(注意拷贝目录必须加参数-r)的时候犯了另一个低级错误,就是scp命令后面的参数-r的位置(参数-r后面必须指定一个目录)有问题,下面的才是正确的使用方式:
[root@hadoop01 ~]# scp -r flume/ hadoop02:/root/apps/
 
本文永久更新地址:http://www.linuxdiyf.com/linux/27503.html