Cobbler 客户端自动重装

匿名 (未验证) 提交于 2019-12-03 00:19:01

客户机自动安装失败,设置客户机自动重装。

请注意:不是在Cobbler Server上安装koan,是在Client上安装koan

[root@localhost ~]# ls /etc/yum.repos.d/   # 查看epel源是否有 CentOS-Base.repo  CentOS-Debuginfo.repo  CentOS-Media.repo    CentOS-Vault.repo CentOS-CR.repo    CentOS-fasttrack.repo  CentOS-Sources.repo  
[CentOS 7 阿里云epel源]: [root@localhost ~]# yum install wget -y     # 下载wget以下载epel源 [root@localhost ~]# wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo  [CentOS 6 阿里云epel源]: [root@localhost ~]# yum install wget -y     # 下载wget以下载epel源 [root@localhost ~]# wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-6.repo
[root@localhost ~]# rpm -qa | grep koan     # 没有安装koan [root@localhost ~]# yum -y install epel-release      # 可以安装epel源,如果上面安装了阿里云的epel源,就不需要执行这个命令  [root@localhost ~]# yum install koan -y
[root@localhost ~]# koan --help     # 查看帮助
# 安装好以后,我们可以查看Cobbler Server上有哪些系统提供了 [root@localhost ~]# koan --server=10.94.2.240 --list=profiles # --server指Cobbler Server地址 --list=profiles指列出这个Cobbler Server有哪些profile - looking for Cobbler at http://10.94.2.240:80/cobbler_api CentOS-7-x86_64   # 罗列出来的系统  # 选择重装的系统: [root@localhost ~]# koan --replace-self --server=10.94.2.240 --profile=CentOS-7-x86_64 [root@localhost ~]# less /boot/grub2/grub.cfg # 我们可以查看这个启动项里面,发现多了一些内容,这就是为啥开机后能够自动选择网络安装,是因为grub启动项里设置了 [root@localhost ~]# reboot  # 重启
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!