VM准备与安装Linux虚拟机(Base)

下载VM与Centos镜像

用的 VM 17 版本:
该版本解决了老版本的一些蓝屏问题和兼容性问题
https://download3.vmware.com/software/WKST-1700-WIN/VMware-workstation-full-17.0.0-20800274.exe

# 密钥
JU090-6039P-08409-8J0QH-2YR7F

Centos 7.6.1810 (阿里云镜像)
https://mirrors.aliyun.com/centos-vault/centos/7.6.1810/isos/x86_64/CentOS-7-x86_64-DVD-1810.iso

VM基本设置

设置VM虚拟网络编辑器
image
对VMnet8进行网络设置
image

子网IP设置为:192.168.88.0
子网掩码:225.225.225.0
NAT网关设置为:192.168.88.2

安装Centos

选择ISO文件开始安装
image
下一步,随便设置用户名密码
image
下一步,起个名字,我这里叫Base,方便以后克隆用
image
然后下一步下一步..配置看着给,我给了4H,2G,40G存储
image

配置OK后点击最后完成,虚拟机自动启动.输入安装的时候的密码进入系统
image

Base虚拟机软件的基本设置

先切换到root

su -

关闭防火墙 (为了避免网络不通的问题方便测试,生产环境不建议关闭)

systemctl stop firewalld
systemctl disable firewalld

关闭SELinux

vim /etc/sysconfig/selinux

把SELINUX改成disabled

image

时间同步与时区设定

  1. 安装ntp
yum install -y ntp
  1. 更新时区
rm -f /etc/localtime
ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
  1. 同步时间(使用阿里的ntp服务)
ntpdate -u ntp.aliyun.com
  1. ntp软件开启启动
systemctl start ntpd
systemctl enable ntpd

至此Centos7.6 Base虚拟机安装完成!

posted @   邓振振  阅读(160)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?
· Pantheons:用 TypeScript 打造主流大模型对话的一站式集成库
点击右上角即可分享
微信分享提示