系统相关
首页 > 系统相关> > VMware最小化之初始化服务器

VMware最小化之初始化服务器

作者:互联网

一、配置IP地址(NAT)自动获取
[root@localhost ~]# vim /etc/sysconfig/network-scripts/ifcfg-ens33
在这里插入图片描述二、配置YUM源
1、本地源
2、网络源
https://blog.csdn.net/qq_45955904/article/details/110876996
三、关防火墙
1、停止防火墙
[root@localhost ~]# systemctl stop firewalld
2、禁用防火墙
[root@localhost ~]# systemctl disable firewalld
3、查看防火墙状态
[root@localhost ~]# systemctl status firewalld
● firewalld.service - firewalld - dynamic firewall daemon
Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)
Active: inactive (dead)
Docs: man:firewalld(1)

12月 10 20:50:42 localhost.localdomain systemd[1]: Starting …
12月 10 20:50:44 localhost.localdomain systemd[1]: Started f…
12月 10 20:57:54 localhost.localdomain systemd[1]: Stopping …
12月 10 20:57:55 localhost.localdomain systemd[1]: Stopped f…
Hint: Some lines were ellipsized, use -l to show in full.
四、selinux
1、查看selinux
[root@localhost ~]# getenforce
Enforcing
enforcing 开启(会阻止你的程序)
permissive 开启放行
disabled 禁用
2、临时关闭
[root@localhost ~]# setenforce 0
[root@localhost ~]# getenforce
Permissive
3、永久关闭
[root@localhost ~]# vim /etc/sysconfig/selinux
SELINUX=disabled
五、安装常用程序
上传下载工具 系统状态 字符浏览器 下载工具 网络工具 自动补全
yum install -y lrzsz sysstat elinks wget net-tools bash-completion vim
六、关机拍摄快照
菜单栏---->快照---->拍摄快照即可。

标签:初始化,systemd,20,localdomain,firewalld,VMware,最小化,root,localhost
来源: https://blog.csdn.net/qq_45955904/article/details/110983318