一、启动系统前,加一块光驱,把安装镜像文件放到光驱中
二、配置Yum文件
[root@localhost ~]# cd /etc/yum.repos.d/
[root@localhost yum.repos.d]# rm -f *
[root@localhost yum.repos.d]# vi cdrom.repo
[BaseOS]
name=BaseOS
baseurl=file:///media/BaseOS
enabled=1
gpgcheck=0
[AppStream]
name=AppStream
baseurl=file:///media/AppStream
enabled=1
gpgcheck=0
[ansible]
name=ansible
baseurl=file:///mnt/ansible
enabled=1
gpgcheck=0
三、挂载光驱,安装ansible
mount /dev/sr1 /media
mount /dev/sr0 /mnt
yum -y install ansible