从一个系统复制到另一个系统时无法创建常规文件

时间:2011-10-11 15:48:58

标签: linux

我尝试使用以下命令将文件从一个Linux服务器复制到另一个Linux服务器

scp sampleweb.rar pavan@50.45.555.90 /

它在putty控制台下给了我这个错误。

cp: cannot create regular file `/sampleweb.rar': Permission denied
cp: cannot create regular file `/pavan@50.45.555.90': Permission denied

1 个答案:

答案 0 :(得分:10)

假设您正在尝试写入远程计算机上的/目录,看起来您错过了冒号:

scp sampleweb.rar pavan@50.45.555.90:/

如果没有冒号,scp会解析这是本地副本,并在本地计算机上回退到cp,如错误消息所示。