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 重新启动