CentOS7 最小化安装完配置
Posted 编程圈
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7 最小化安装完配置相关的知识,希望对你有一定的参考价值。
防火墙
yum install -y net-tools
systemctl stop firewalld
systemctl disable firewalld.service
yum install -y iptables-services
systemctl restart iptables.service
#设置防火墙开机启动
systemctl enable iptables.service
vi /etc/selinux/config
关闭SELINUX
#注释掉下面两行
#SELINUX=enforcing
#SELINUXTYPE=targeted
#增加一行
SELINUX=disabled
setenforce 0
shutdown -r now
wget及yum源
yum install -y wget
#先进入源的目录
cd /etc/yum.repos.d
#备份一下官方源
mv CentOS-Base.repo CentOS-Base.repo.bak
#将阿里源文件下载下来
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
#重建源数据缓存
yum makecache
yum install -y vim-enhanced
固定IP地址
vi /etc/sysconfig/network-scripts/ifcfg-eth0
BOOTPROTO="static"
BROADCAST=192.168.0.255
IPADDR=12.168.0.33 #如果设置网卡获得 ip地址的方式为静态指定,此字段就指定了网卡对应的ip地址
GATEWAY=192.168.0.1
NETMASK=255.255.255.0 #网卡对应的网络掩码
DNS1=192.168.0.1 #DNS 配置
#重启网络
service network restart 或 /etc/init.d/network restart
以上是关于CentOS7 最小化安装完配置的主要内容,如果未能解决你的问题,请参考以下文章