我尝试使用以下命令将文件从一个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
答案 0 :(得分:10)
假设您正在尝试写入远程计算机上的/目录,看起来您错过了冒号:
scp sampleweb.rar pavan@50.45.555.90:/
如果没有冒号,scp
会解析这是本地副本,并在本地计算机上回退到cp
,如错误消息所示。