1.创建一个可用的实验快照
2.固定的可以联网IP地址
3.关闭防火墙
4.关闭selinux
5.光盘自动挂载
6.配置好本地yum源
##如果是RHEL6 安装Vmware tools

一、配置IP地址
RHEL7中弱化了setup的功能,对于网络管理来说,network服务的功能弱化,主要通过NetworkManager对网络进行管理

[root@localhost ~]# vi /etc/sysconfig/network-scripts/ifcfg-eno16777736
TYPE=Ethernet
BOOTPROTO=static ##静态IP
IPADDR=192.168.100.200 ##IP地址
NETMASK=255.255.255.0 ##子网掩码
GATEWAY=192.168.100.100 ##默认网关
DNS1=192.168.100.100 ##DNS
DEFROUTE=yes
PEERDNS=yes
PEERROUTES=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=no
IPV6_AUTOCONF=no
IPV6_DEFROUTE=no
IPV6_PEERDNS=no
IPV6_PEERROUTES=no
IPV6_FAILURE_FATAL=no
NAME=eno16777736
DEVICE=eno16777736
ONBOOT=yes ##系统启动时激活网卡

[root@localhost ~]# systemctl restart network

二、关闭防火墙并设置开机自动关闭
[root@localhost ~]# systemctl stop firewalld
[root@localhost ~]# systemctl disable firewalld
Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
Removed symlink /etc/systemd/system/basic.target.wants/firewalld.service.

三、关闭selinux并设置开机自动关闭
[root@localhost ~]# setenforce 0 #临时关闭

开机自动关闭:
[root@localhost ~]# sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config

四、设置光盘开机自动挂载
[root@localhost ~]# echo "/dev/sr0 /mnt iso9660 defaults 0 0" >> /etc/fstab
验证:
root@localhost ~]# mount -a
mount: /dev/sr0 写保护,将以只读方式挂载
五、配置好本地yum源
[root@localhost ~]# rm -rf /etc/yum.repos.d/*
[root@localhost ~]# cat > /etc/yum.repos.d/rhel7.repo <

[rhel7]
name=rhel-source
baseurl=file:///mnt
enabled=1
gpgcheck=0
END
验证:
[root@localhost ~]# cat /etc/yum.repos.d/rhel7.repo
[rhel7]
name=rhel7
baseurl=file:///mnt
enabled=1
gpgcheck=0
[root@localhost ~]# yum clean all #清空yum缓存
[root@localhost ~]# yum list #生成缓存列表