centos7模板机制作

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7模板机制作相关的知识,希望对你有一定的参考价值。

第一章在VMware Workstation 12 Pro上新建虚拟机

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

第二章虚拟机网络设置

技术分享

技术分享

第三章centos7安装

下载centos7

https://mirrors.aliyun.com/centos/7.3.1611/isos/x86_64/

技术分享 

技术分享

开机启动虚拟机

技术分享

技术分享

在下一行输入 net.ifnames=0 biosdevname=0 然后回车(目的centos 7网卡命名为eth0)

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

3.1优化网卡ifcfg-eth0

[[email protected] ~]# vi /etc/sysconfig/network-scripts/ifcfg-eth0 #只保留如下内容
TYPE=Ethernet
BOOTPROTO=static
DEFROUTE=yes
PEERDNS=no
PEERROUTES=yes
IPV4_FAILURE_FATAL=no
NAME=eth0
DEVICE=eth0
ONBOOT=yes
IPADDR=10.0.0.100
NETMASK=255.255.255.0
GATEWAY=10.0.0.2
[[email protected] ~]# systemctl restart network    #重启所有网卡


技术分享

技术分享

3.2关闭NetworkManager和防火墙开机自启动

[[email protected] ~]# systemctl disable firewalld
[[email protected] ~]# systemctl disable NetworkManager

3.3设置主机名

[[email protected] ~]# vi /etc/hostname  #修改主机名为如下内容
linux-node1.example.com

3.4设置主机名解析

[[email protected] ~]# cat /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
10.0.0.11 linux-node1 linux-node1.example.com
10.0.0.12 linux-node2 linux-node2.example.com

3.5设置DNS解析

[[email protected] ~]# vi /etc/resolv.conf 
nameserver 10.0.0.2

3.6安装EPEL仓库和常用命令

根据:https://mirrors.aliyun.com/

找到centos7的EPEL仓库源

rpm -ivh 

yum install -y net-tools vim lrzsz tree screen lsof tcpdump nc mtr nmap

技术分享

技术分享


3.7关闭并确认SElinux处于关闭状态

[[email protected] ~]# vim /etc/sysconfig/selinux
把SELINUX=enforcing修改为SELINUX=disabled

 3.8更新系统并重启

[[email protected] ~]# yum update -y && reboot

3.9克隆虚拟机

请关闭虚拟机,并克隆当前虚拟机linux-node1到linux-node2,建议选择“创建链接克隆”,而不是选择”创建完整克隆”。

克隆完毕后请给linux-node2设置正确的IP地址和主机名

第四章补充说明

如果是做openstack等二次虚拟化实验测试,虚拟机需要cpu需要开启虚拟化。如下所示:

技术分享


本文出自 “sandshell” 博客,请务必保留此出处http://sandshell.blog.51cto.com/9055959/1964051

以上是关于centos7模板机制作的主要内容,如果未能解决你的问题,请参考以下文章

C#常用代码片段备忘

centos模板机制作前修改配置

centos 6.8模板机制作

Windows Server 2008 R2模板机制作(VMware Workstation)

Ocata_环境初始化准备:centos 7.2模板机制作(精华)

VSCode自定义代码片段——.vue文件的模板