码迷,mamicode.com
首页 > 其他好文 > 详细

scp命令语法

时间:2014-05-08 16:31:03      阅读:538      评论:0      收藏:0      [点我收藏+]

标签:scp

1、将本地文件拷贝到远端

scp 文件 用户@ 主机名:远端目录
scp 123.txt root@192.168.1.1:/

2、讲远端目录拷贝到本地

scp -r  用户@主机名:远端目录   本地目录
scp -r root@192.168.1.2:/456.txt ~

3、SCP无需输入密码传输文件 

在Linux环境下,两台主机之间传输文件一般使用scp命令,通常用scp命令通过ssh获取对方linux主机文件的时候都需要输入密码确认。

不过通过建立信任关系,可以实现不输入密码。

1)在其中一台主机上执行如下命令来生成配对密钥: 

ssh-keygen -t rsa

按照提示操作,注意,不要输入passphrase。提示信息如下

Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
63:61:d2:ce:5f:e8:14:5c:56:2c:7b:08:71:41:a2:cc root@localhost.localdomain

2.)将 .ssh 目录中的 id_rsa.pub 文件复制到另外一台主机的 ~/.ssh/ 目录中,并改名为 authorized_keys。

scp .ssh/id_rsa.pub 主机名:/root/.ssh/authorized_keys

本文出自 “linux_cheng” 博客,请务必保留此出处http://6764097.blog.51cto.com/6754097/1408360

scp命令语法,布布扣,bubuko.com

scp命令语法

标签:scp

原文地址:http://6764097.blog.51cto.com/6754097/1408360

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!