centOS7 開機流程與安裝命令
1,總結centOS7 開機流程與安裝命令。
2.配置網絡卡 (vi改他的配置檔案 )安裝ifconfig命令
#cd /etc/sysconfig/network-scripts/
# vi ifcfg-ens32(改ONBOOT自動配置網絡卡=yes)
3, systemctl stop firewalld 關閉防火牆的
systemctl disable firewalld 關閉防火牆的 開機自啟動
systemctl stop NetworkManager (管理網絡卡配置這個要關,因為我上邊已經手動更改,我手動更改的優先順序高)這個也必須要關閉
systemctl disable NetworkManager 去掉它的開機自啟動
systemctl status firewalld 看它的狀態firewalld
進入:cd /bin 進入bin裡
:systemctl restart network 重啟network網路服務
4,rc.local 開機自啟動的檔案放這裡
Chmod +x rc.local 給這個目錄加x許可權
Ll rc.local 在檢視下許可權
5,安裝雲yum源
建立目錄mkdir –p /media/cdrom
掛載光碟:mount /dev/sr0 /media/cdrom/
進入cd /etc/ yum.repos.d
Vi CentOS-Media.repo (改成1)
清空舊的yum快取
yum -y clean all
生成新的yum快取
yum makecache
安裝跟epel有關的所有yum源(就是之前下載雲yum的檔案)
Yum –y install epel-release
6,再安裝ifconfig命令。
yum install net-tools
7,yum安裝ansible命令
Yum –y install ansible
8,永久配置使用者名稱:
Hostname ansible
Vim /etc/hostname
這兩步
Reboot 重新啟動