CentOS7安裝後基本設定
阿新 • • 發佈:2019-02-07
VistualBox安裝CentOS7
此處省略
啟用網絡卡
#檢視網絡卡
ip addr
#修改網絡卡為隨系統自動啟動 ONBOOT = yes
vi /etc/sysconfig/network-scripts/ifcfg-enp0s3
#啟動網絡卡
ifup enp0s3
安裝net-tool
#更新 yum
yum update
#安裝 net-tool
yum install -y net-tool
關閉防火牆
#關閉防火牆服務
systemctl stop firewalld.service
#禁用開機啟動
systemctl disable firewalld.service
禁用SELinux
#檢視SELinux狀態(如果SELinux status引數為enabled即為開啟狀態)
/usr/sbin/sestatus -v
#臨時關閉
setenforce 0
#修改配置檔案重啟機器禁用(將SELINUX=enforcing改為SELINUX=disabled)
vim /etc/selinux/config