当前位置: 代码迷 >> 综合 >> window从linux服务器上下载东西报错:security violation: remote host attempted to write to a '.' or '..' path!
  详细解决方案

window从linux服务器上下载东西报错:security violation: remote host attempted to write to a '.' or '..' path!

热度:73   发布时间:2023-12-17 03:30:13.0

1、pscp -r root@192.168.0.188:/home/admin/ D:\LinuxFile\

2、报错

    security violation: remote host attempted to write to a '.' or '..' path!

3、只需在路径后跟上一个 * 就好了

        pscp -r root@192.168.0.188:/home/admin/* D:\LinuxFile\

4、OK

  相关解决方案