美文网首页
新建虚拟机

新建虚拟机

作者: 斜阳独倚东楼 | 来源:发表于2020-03-15 16:18 被阅读0次

    (1)本地存储地址

    1.D:\VMwareSpace\neweshop\cache01

    2.网络连接:桥接模式

    3.选择DVD

    4.第一个选项

    5.skip

    6.yes discard any data

    7.时区:上海

    8.write changes to disk

    (2)配置网络

    vi /etc/sysconfig/network-scripts/ifcfg-eth0

    需要先BOOTPROTO=dhcp

    ping通百度再BOOTPROTO=static

    DEVICE=eth0

    TYPE=Ethernet

    ONBOOT=yes

    BOOTPROTO=static

    IPADDR=192.168.1.111

    NETMASK=255.255.255.0

    GATEWAY=192.168.1.1

    service network restart

    (3)配置hosts

    vi /etc/hosts

    192.168.1.111 cache01

    192.168.1.112 cache02

    192.168.1.113 cache03

    192.168.1.114 cache04

    192.168.1.115 cache05

    (4)关闭防火墙

    service iptables stop

    service ip6tables stop

    chkconfig iptables off

    chkconfig ip6tables off

    vi /etc/selinux/config

    SELINUX=disabled

    (5)配置yum

    yum clean all

    yum makecache

    yum install wget

    相关文章

      网友评论

          本文标题:新建虚拟机

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