1.准备VM
镜像









开启虚拟机
选择安装 Rocky linux 9.5

软件选择最小安装就可以了

在 rocky 9 以后版本中 他全部 采用 network manager 去替换老的 network 去实现网络的管理
1.网卡配置
bash
cat /etc/NetworkManager/system-connections/ens160.nmconnection
我们配置了两块网卡

选择第一块配置
method=auto 自动 改成 手动 manual


address1 逗号后面哪个 是网关 我们没有 所以先不用设置
bash
[ipv4]
method=manual
address1=192.168.72.11/24
dns=114.114.114.114;8.8.8.8;8.8.8.4
address1 地址要和 下面地址一样网段 后面可以随便写

保存退出 重启网卡
bash
systemctl restart NetworkManager
2.替换系统镜像源

不要弄 我有代理 不需要 弄了反而访问不通
3.防火墙关闭
bash
systemctl stop firewalld
bash
systemctl disable firewalld
4.安装 iptables
bash
yum -y install iptables-services
开启我们的 iptables 的用户态
bash
systemctl start iptables

默认规则
但是我们不需要
清空规则
bash
iptables -F
将空规则保存到持久化文件里
bash
service iptables save
开机自启
bash
systemctl enable iptables
5.禁用 selinux
bash
setenforce 0
bash
sed -i "s/SELINUX=enforcing/SELINUX=disabled/g" /etc/selinux/config
bash
grubby --update-kernel ALL --args selinux=0
查看是否禁用 可以不执行
bash
grubby --info DEFAULT
回滚内核层禁用操作 可以不执行
bash
grubby --update-kernel ALL --remove-args selinux
我没执行
6.设置时区
bash
timedatectl set-timezone Asia/Shanghai
先关闭当前机器 因为 这个系统我们会复用很多次
bash
shutdown -h now
7.关机后创建快照
右键

点击 快照 -> 拍摄快照

起个名字
点击拍摄快照