1. 程式人生 > >centos7模板機制作

centos7模板機制作

linux

第一章在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模板機制作