一、安装步骤:

1. 新建虚拟机

2. 输入虚拟机名称

3. 选择存储器

4. 选择操作系统

5. 分配CPU,内核书

6. 设置虚拟磁盘大小

7. 选择安装的ISO文件

8. 重命名虚拟机名称(后跟操作系统名称和IP地址后三位)

9, 打开虚拟机电源

10. 打开虚拟机控制台

11. 设置操作系统语言

12. 设置软件安装类型(最小化安装,不带UI),设置硬盘的分区大小,设置网络连接

a.设置硬盘的分区大小

b.设置网络连接,主机名

c. 设置IP地址

d. 设置后,启动网络,设置主机名

二、安装完成之后,修改相关配置信息:

0. 用passwd 设置root 密码

1. 确定主机名正确

2. ip a 确定IP地址正确

3. curl www.sina.com.cn 确定能访问外网

4. yum -y update 更新CentOS

5. yum -y install vim 安装vim安装包

6.关闭 selinux

sestatus 看selinux的状态


使用如下编辑命令修改SELinux status 为disabled

vim /etc/selinux/config    
SELINUX=disabled 

7. 关闭防火墙

systemctl stop firewalld
系统重启后,不自动启动防火墙

systemctl disable firewalld

查看当前防火墙状态

systemctl status firewalld

8. 配置时间同步

yum -y install ntp
vi /etc/ntp.conf
增加3个时间服务器
server s2d.time.edu.cn iburst #西南地区网络中心
server s2e.time.edu.cn iburst #西北地区网络中心
server s2f.time.edu.cn iburst #东北地区网络中心


9.启动ntp服务 
systemctl start ntpd 
systemctl enable ntpd

查看状态
ntpq -p

10. 重启reboot

11. 查看之前修改过的状态

systemctl status firewalld

systemctl status ntpd

sestatus