CentOS7 最小化安裝完配置

2021-08-03 21:09:31 字數 1358 閱讀 7248

防火牆

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#備份一下官方源

#重建源資料快取

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

CentOS 7最小化安裝配置

檢視網路狀態,因為ifconfig沒有安裝,所以使用如下命令 ip addr進入目錄 cd etc sysconfig network scripts編輯網絡卡檔案 vi ifcfg eno16777736修改或增加如下內容 bootproto static dhcp改為static 修改 onbo...

CentOS7最小化安裝配置

1.靜態ip配置 root localhost vim etc sysconfig network scripts ifcfg ens33 bootproto static defroute yes ipaddr 192.168.80.132 netmask 255.255.255.0 gatewa...

Centos 7最小化安裝後配置

關閉selinux vi etc sysconfig selinux selinux disabled wq配置網絡卡 最小化安裝後ifconfig無法使用 該配置的前提是採用 nat模式 檢查網絡卡 ip addr 或者 更新yum yum y update聯網後安裝ifconfig yum y ...