上传者: meerio
|
上传时间: 2025-02-11 22:54:57
|
文件大小: 4.86MB
|
文件类型: PDF
文档图文形式,共51页
本人对linux一无所知,只是因为这个项目才针对性查了一些资料,还是一知半解,非常业余,也因此记录比较详细,但有些中文描述不对或不准确,也请见谅
一、 安装vmware(略)
二、 新建虚拟机(看图,不做说明或在图中说明)
三、 安装CentOS 8.5(看图,不做说明或在图中说明)
四、 基础配置
#查看本机网络配置(如前期未配置,自行配置网络)
#配置网络可以正常访问互联网
#临时关闭SELinux
[root@localhost ~]# setenforce 0
#永久关闭SELinux(重启生效)
[root@localhost ~]# sed -i 's/SELINUX=enforcing/SELINUX=disabled/g'
#临时关闭防火墙(选做,或在后期设置防火墙规则)
[root@localhost ~]# systemctl stop firewalld.service
#永久关闭防火墙(选做,或在后期设置防火墙规则)
[root@localhost ~]# systemctl disable firewalld.service