zoukankan      html  css  js  c++  java
  • unix scp命令(两个unix系统传输文件)

    1.安装openssh-server模块

    sudo apt-get install ssh openssh-server

    2.使用命令

    • 将本地文件拷贝到远程

    scp 文件名 –用户名@计算机IP或者计算机名称:远程路径

    • 从远程将文件拷回本地

    scp –用户名@计算机IP或者计算机名称:文件名 本地路径

    命令格式

    scp local_file remote_username@remote_ip:remote_folder 
    或者 
    scp local_file remote_username@remote_ip:remote_file 
    或者 
    scp local_file remote_ip:remote_folder 
    或者 
    scp local_file remote_ip:remote_file 

    3.有时候会出现Permission denied(验证失败)的问题:

    那是因为没有远程系统的文件夹访问权限的问题.

    可以使用tmp文件夹避开

    使用~/tmp为远程目标文件夹

    完整格式: scp file_name remote_name@remote_ip:~/tmp

    然后修改tmp文件的名称即可

    参考:http://www.linuxidc.com/Linux/2015-11/125214.htm

  • 相关阅读:
    洛谷-P2430 严酷的训练
    Hackthebox网络不稳定的解决方案
    解压
    谷歌地图API密钥未授权利用
    关于读取heapdump踩的一个小坑
    RECON
    最近思考
    go get
    Js跳转
    Session
  • 原文地址:https://www.cnblogs.com/weichao975/p/8194545.html
Copyright © 2011-2022 走看看