美文网首页
VirtualBox安装Linux

VirtualBox安装Linux

作者: 史鸿福 | 来源:发表于2019-12-27 21:15 被阅读0次

    1.安装前准备

    管理>>网络>>添加>>OK
    2.新建虚拟机
    如果8内存设置2G
    3.设置
    i5设置2/i7设置4
    选择iso
    容量
    网卡1选择NAT(如果有3台选择不同的界面名称)
    启用网卡2

    4.网卡安装
    4.1配置第一块网卡(eth0)


    4.2配置第二块网卡(eth1)
    添加IP

    ``
    2.修改网络映射(每台虚拟机都要配置)
    vi /etc/hosts

    192.168.56.102 hadoop102
    192.168.56.103 hadoop103
    192.168.56.104 hadoop104
    

    cat /etc/profile >> ~/.bashrc
    xcall.sh shutdown -h now
    3.免密(每台机器都要免密对自己也要配置)

    ssh-keygen -t rsa   //生成密钥
    ssh-copy-id 192.168.56.10?  //密钥分发
    

    4.关闭防火墙(没有关闭不显示页面)
    关闭防火墙
    service iptables stop
    永久禁用防火墙
    chkconfig iptables off

    相关文章

      网友评论

          本文标题:VirtualBox安装Linux

          本文链接:https://www.haomeiwen.com/subject/ihxjoctx.html