CentOS初始化镜像

2019-07-31  本文已影响0人  邓立_全栈UncleLi

前言
虚拟机在开发中是经常用到的工具,如果每次都重新安装,那得浪费不少时间,所以这里安装一次,之后都可以复制镜像来使用,节省不少时间

安装镜像

安装镜像后配置网络模式

虚拟网络编辑器图 网关设置图

设置 固定 ip,防止和之前虚拟机的网关冲突

VMnet8固定ip图

更改网卡信息

ping www.baidu.com

出现

-bash: network is unreachable
ls /etc/sysconfig/network-scripts/
系统网络配置目录图
vi /etc/sysconfig/network-scripts/ifcfg-ens33 (后缀为本机自动生成)
service network restart
重启指令图

更换源

// 备份源
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
-bash: wget: command not found
yum -y install wget

CentOS 5

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo

CentOS 6

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

CentOS 7

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

CentOS 8

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-8.repo
yum makecache

查看ip

ip addr
查看ip图
yum -y install net-tools

基础镜像环境

克隆虚拟机


虚拟机克隆图

克隆虚拟机后需要到虚拟机的网路适配器重新生成 MAC 地址防止冲突

虚拟机设置图 重新生成mac地址图

如果网络设置目录里的 ifcfg-ens33 文件使用了固定 ip,那么重新生成 MAC 地址后,还需要把固定 ip变更一下防止冲突,如果没使用固定 ip,请忽略哈

为此,CentOS 的初始化镜像就完成了,如果还需要自定义配置也可以在此基础上叠加,要是大家有好的工具,可以留言推荐给小编哟~~~

上一篇 下一篇

猜你喜欢

热点阅读