本文介绍了(Scp-权限被拒绝(公钥)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用linux命令 Scp 来获取服务器xx.xx.xxx.xx的文件并放到我的桌面上.这是我的语法
I am trying to use the linux command Scp to get a file of a server xx.xx.xxx.xx and onto my Desktop. Here is my syntax
scp [email protected]:/scraper/summary.csv /home/barns/Desktop
我遇到错误
'permission denied (publickey)'
我的语法不正确吗?
推荐答案
scp [email protected]:~/scraper/summary.csv /home/barns/Desktop
在目录名称之前,我需要〜符号
I needed a ~ symbol before the directory name
这篇关于(Scp-权限被拒绝(公钥)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!