两台虚拟机之间拷贝东西

Posted lovetl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了两台虚拟机之间拷贝东西相关的知识,希望对你有一定的参考价值。

本机(hadoop1)文件拷贝到其他主机

操作命令   scp -r module root@hadoop2:/opt/module

  -r递归

  module本地目录

  root操作的用户

  hadoop2主机名

  /opt/module拷贝到虚拟机的目录

[root@hadoop1 opt]#   scp -r module root@hadoop2:/opt/module
The authenticity of host ‘hadoop2 (192.168.1.102)‘ can‘t be established.

RSA key fingerprint is 46:9b:7a:5c:82:13:e7:d3:54:44:0c:00:2c:6c:eb:24.
Are you sure you want to continue connecting (yes/no)? yes 输入yes确定
Warning: Permanently added ‘hadoop2,192.168.1.102‘ (RSA) to the list of known hosts.
root@hadoop2‘s password: 在此处输入hadoop2的密码
[root@hadoop1 opt]#

 

 

把其他主机文件拷贝到本主机(hadoop2)

操作命令 scp -r root@hadoop1:/opt/module ./module/ 

  -r递归

  root@hadoop1:/opt/module  其他主机(hadoop1)的目录

  ./module/ 

[root@hadoop2 opt]# scp -r root@hadoop1:/opt/module ./module/
The authenticity of host ‘hadoop1 (192.168.1.101)‘ can‘t be established.
RSA key fingerprint is 46:9b:7a:5c:82:13:e7:d3:54:44:0c:00:2c:6c:eb:24.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added ‘hadoop1,192.168.1.101‘ (RSA) to the list of known hosts.
root@hadoop1‘s password: 在此处输入hadoop1的密码
[root@hadoop2 opt]#

 

 

主机hadoop1 把hadoop2上的东西拷贝到 hadoop3上

m

以上是关于两台虚拟机之间拷贝东西的主要内容,如果未能解决你的问题,请参考以下文章

虚拟机中的两台主机怎么相互拷贝文件

两台电脑都装VM虚拟机,如何在不同主机的虚拟机之间通信

两台linux 虚拟机之间互联

kvm迁移

容器内部安装scp,拷贝到外部物理机

两台CentOS6.5 在不同机器上互联