一、Cobbler简介

二、Cobbler的核心组件

三、基于Cobbler自动化安装多版本系统

四、使用cobbler_web



一、Cobbler简介


Cobbler是PXE的二次封装,由Python语言开发,功能是实现批量系统部署。相对于PXE,Cobbler能够方便地将多个操作系统糅合在一起,这通过一个服务的进行配置。在安装时,用户可通过菜单选择安装哪一种系统。除此之外,cobbler还能够提供一个web接口cobbler_web,方便用户管理cobbler。


cobbler的中文意思为“补鞋匠”,意思是Cobbler将PXE进行二次封装后,其使用非常简单,连补鞋匠都会。



二、Cobbler的核心组件


distro表示一个发行版,用于标记一个发行版的最关键资源是kernel和ramdisk
profile对于某一个特定的发行版(distro),加上kickstart文件,以及可能的存储库(repository)和一些内核参数,就是profile
system对于某一个发行版(distro),使用一个特定的配置文件(profile)配置的一个或多个机器,就是system
repository保存一个yum或rsync存储库的镜像信息
p_w_picpath可替换一个包含不属于此类别的文件的发行版对象(例如,无法分为kernel和initrd的对象)



三、基于Cobbler自动化安装多版本系统


3.1 安装Cobbler

注意:cobbler由epel源提供。

[root@centos7 ~]# yum -y install cobbler cobbler-web pykickstart debmirro

cobbler的配置文件为/etc/cobbler/setting,这个文件是YAML格式。


执行"cobbler check"命令检查存在的问题,逐一解决这些提示的问题即可,如下。

[root@centos7 ~]# cobbler check
The following are potential configuration items that you may want to fix:

1 : The 'server' field in /etc/cobbler/settings must be set to something other than localhost, or kickstarting features will not work.  This should be a resolvable hostname or IP for the boot server as reachable by all machines that will use it.
2 : For PXE to be functional, the 'next_server' field in /etc/cobbler/settings must be set to something other than 127.0.0.1, and should match the IP of the boot server on the PXE network.
3 : SELinux is enabled. Please review the following wiki page for details on ensuring cobbler works correctly in your SELinux environment:
    https://github.com/cobbler/cobbler/wiki/Selinux
4 : change 'disable' to 'no' in /etc/xinetd.d/tftp
5 : some network boot-loaders are missing from /var/lib/cobbler/loaders, you may run 'cobbler get-loaders' to download them, or, if you only want to handle x86/x86_64 netbooting, you may ensure that you have installed a *recent* version of the syslinux package installed and can ignore this message entirely.  Files in this directory, should you want to support all architectures, should include pxelinux.0, menu.c32, elilo.efi, and yaboot. The 'cobbler get-loaders' command is the easiest way to resolve these requirements.
6 : enable and start rsyncd.service with systemctl
7 : comment out 'dists' on /etc/debmirror.conf for proper debian support
8 : comment out 'arches' on /etc/debmirror.conf for proper debian support
9 : The default password used by the sample templates for newly installed machines (default_password_crypted in /etc/cobbler/settings) is still set to 'cobbler' and should be changed, try: "openssl passwd -1 -salt 'random-phrase-here' 'your-password-here'" to generate new one
10 : fencing tools were not found, and are required to use the (optional) power management features. install cman or fence-agents to use them

Restart cobblerd and then run 'cobbler sync' to apply changes.


逐个解决以上问题:

问题1:将server参数的值修改为提供cobbler服务的主机的IP地址或主机名
[root@centos7 ~]# vim /etc/cobbler/settings
server: 192.168.10.15

问题2:将next-server参数的值修改为提供tftp服务的主机的IP地址或主机名
[root@centos7 ~]# vim /etc/cobbler/settings
next_server: 192.168.10.150

问题3:确保SElinux服务是关闭的
[root@centos7 cobbler]# getenforce 
Permissive

问题4:启动tftp服务
[root@centos7 ~]# systemctl start tftp.socket
[root@centos7 cobbler]# systemctl enable tftp.socket

问题5:准备bootloader
[root@centos7 cobbler]# cp /usr/share/syslinux/{pxelinux.0,menu.c32} /var/lib/cobbler/loaders/

问题6:启动rsyncd服务
[root@centos7 cobbler]# systemctl start rsyncd.service
[root@centos7 cobbler]# systemctl enable rsyncd.service

问题7:可忽略

问题8:可忽略

问题9:修改default_password_crypted参数,为系统设置密码
[root@centos7 cobbler]# openssl passwd -1 -salt 'itab' 'cisco'
$1$itab$cIrTk6KUvf9OE7Mmhj1TV1
[root@centos7 ~]# vim /etc/cobbler/settings
default_password_crypted: "$1$itab$cIrTk6KUvf9OE7Mmhj1TV1"

问题10:可忽略


重新检查:
[root@centos7 ~]# systemctl restart cobblerd.service
[root@centos7 ~]# cobbler check
The following are potential configuration items that you may want to fix:

1 : SELinux is enabled. Please review the following wiki page for details on ensuring cobbler works correctly in your SELinux environment:
    https://github.com/cobbler/cobbler/wiki/Selinux
2 : change 'disable' to 'no' in /etc/xinetd.d/tftp
3 : some network boot-loaders are missing from /var/lib/cobbler/loaders, you may run 'cobbler get-loaders' to download them, or, if you only want to handle x86/x86_64 netbooting, you may ensure that you have installed a *recent* version of the syslinux package installed and can ignore this message entirely.  Files in this directory, should you want to support all architectures, should include pxelinux.0, menu.c32, elilo.efi, and yaboot. The 'cobbler get-loaders' command is the easiest way to resolve these requirements.
4 : comment out 'dists' on /etc/debmirror.conf for proper debian support
5 : comment out 'arches' on /etc/debmirror.conf for proper debian support
6 : fencing tools were not found, and are required to use the (optional) power management features. install cman or fence-agents to use them

Restart cobblerd and then run 'cobbler sync' to apply changes.

以上问题可以忽略。


将cobbler的配置同步到tftp、dhcp、rsync及dns服务配置。

[root@centos7 ~]# cobbler sync


3.2 配置及启动cobbler所依赖的各服务

① cobbler的运行依赖于dhcp、tftp、rsync及dns服务。其中dhcp可由dhcpd(isc)提供,也可由dnsmasq提供;tftp可由tftp-server程序包提供,也可由cobbler自带的tftp功能提供;rsync由rsync程序包提供;dns可由bind提供,也可由dnsmasq提供。

② cobbler可自行管理这些服务中的部分甚至是全部,但需要配置/etc/cobbler/settings文件中的“manage_dhcp”、“manage_tftpd”、“manage_rsync”和“manage_dns”分别进行定义。另外,由于每种服务都有着不同的实现方式,如若需要进行自定义,需要通过修改/etc/cobbler/modules.conf配置文件中各服务的模块参数的值来实现。

③ 本文采用了独立管理的方式,即不通过cobbler来管理这些服务。


(1) 配置DHCP服务

定义好所需的“subnet”及其它参数或选项,而后启动dhcpd守护进程即可。本示例中所用的dhcpd的配置如下所示。

[root@centos7 ~]# vim /etc/dhcp/dhcpd.conf 

option domain-name-servers 114.114.114.114;
option routers 192.168.10.2;

default-lease-time 43200;
max-lease-time 86400;

subnet 192.168.10.0 netmask 255.255.255.0 {
    range 192.168.10.101 192.168.10.140;
    filename "pxelinux.0";
    next-server 192.168.10.150;
}

[root@centos7 ~]# systemctl start dhcpd.service
[root@centos7 ~]# systemctl enable dhcpd.service
[root@centos7 ~]# ss -unl | grep 67
UNCONN     0      0            *:67                       *:*


(2) 配置TFTP服务

[root@centos7 ~]# systemctl start tftp.socket
[root@centos7 ~]# systemctl enable tftp.socket


3.3 配置cobbler

cobbler的各主要组件间的关系如下图所示。

wKioL1mYB32RRgjwAACgIMntXsY938.jpg


(1) 管理distro


使cobbler变得可用的第一步为定义distro,可以通过为其指定外部的安装引导内核及ramdisk文件的方式实现。而如果已经有完整的系统安装树(如CentOS 7的安装镜像)则推荐使用import直接导入的方式进行。


例如,对于已经挂载至/media/cdrom目录的CentOS 7.3 x86_64的安装镜像,则可以使用类似如下命令进行导入。

[root@centos7 ~]# cobbler import --name=centos-7.3-x86_64 --path=/media/cdrom

/var/www/cobbler/ks_mirror是镜像存放目录,cobbler会将光盘中的所有文件都拷贝一份到/var/www/cobbler/ks_mirror下的centos-7-x86_64目录(目录名称和distro名称相同)下。因此,/var/www/cobbler目录所在的分区必须有足够的空间。

[root@centos7 ~]# cd /var/www/cobbler/ks_mirror/
[root@centos7 ks_mirror]# ls
centos-7.3-x86_64  config
[root@centos7 ks_mirror]# ls -1F centos-7.3-x86_64/
CentOS_BuildTag
EFI/
EULA
GPL
p_w_picpaths/
isolinux/
LiveOS/
Packages/
repodata/
RPM-GPG-KEY-CentOS-7
RPM-GPG-KEY-CentOS-Testing-7
TRANS.TBL


可使用“cobbler distro list”列出所有的distro。

[root@centos7 ~]# cobbler distro list
   centos-7.3-x86_64


如果有kickstart文件,也可以使用“--kickstart=/path/to/kickstart_file”进行导入,如果不指定导入的kickstart文件,则import会自动为导入的distro生成一个同名的profile,但这个自动生成的profile通常不符合用户的需求,最好由用户提供,因此需要删除这个自动生成的profile。

[root@centos7 ~]# cobbler profile list
   centos-7.3-x86_64
[root@centos7 ~]# cobbler profile remove --name=centos-7.3-x86_64


(2) 管理profile


cobbler使用profile来为特定的需求类别提供所需要的安装配置,即在distro的基础上通过提供kickstart文件来生成一个特定的系统安装配置。distro的profile可以出现在PXE的引导菜单中作为安装的选择之一。


因此,如果需要为前面创建的centos-7.3-x86_64这个distro提供一个可引导安装条目,其用到的kickstart文件为/var/lib/cobbler/kickstart/centos-7.3-x86_64.cfg(只提供了最基本的程序包),则可通过如下命令实现。

[root@centos7 ~]# cobbler profile add --name=centos-7.3-x86_64-basic --distro=centos-7.3-x86_64 --kickstart=/var/lib/cobbler/kickstarts/centos-7.3-x86_64.cfg


可使用“cobbler profile list”查看已经创建的profile。

[root@centos7 ~]# cobbler profile list
   centos-7.3-x86_64-basic


(3) 自定义kickstart文件

kickstart文件必须存放在/var/lib/cobbler/kickstarts目录下。

使用此前PXE实验中用到的kickstart文件,修改其中的url,如下。

[root@centos7 ~]# vim /var/lib/cobbler/kickstarts/centos-7.3-x86_64.cfg
url --url=http://192.168.10.150/cobbler/ks_mirror/centos-7.3-x86_64/


ks文件如下。

[root@centos7 ~]# vim /var/lib/cobbler/kickstarts/centos-7.3-x86_64.cfgf 

#version=DEVEL
# System authorization information
auth --enableshadow --passalgo=sha512
url --url=http://192.168.10.150/cobbler/ks_mirror/centos-7.3-x86_64/
text
# Run the Setup Agent on first boot
firstboot --disable
reboot
ignoredisk --only-use=sda
# Keyboard layouts
keyboard --vckeymap=us --xlayouts='us'
# System language
lang en_US.UTF-8
# Network information
network  --bootproto=dhcp --device=eno16777736 --onboot=on --ipv6=auto --activate
network  --hostname=cento7
# Root password
rootpw --iscrypted $1$1uGcgMef$MUVhg/xFGVZve5oUXQzmN/
# System services
services --disabled="chronyd"
# System timezone
timezone Asia/Shanghai --isUtc --nontp
# System bootloader configuration
bootloader --append="crashkernel=auto vga=788" --location=mbr --boot-drive=sda
# Partition clearing information
clearpart --none --initlabel
# Disk partitioning information
part swap --fstype="swap" --ondisk=sda --size=2048
part / --fstype="xfs" --ondisk=sda --size=10240
part /boot --fstype="xfs" --ondisk=sda --size=512

%packages
@^minimal
@core
kexec-tools
%end

%addon com_redhat_kdump --enable --reserve-mb='auto'
%end


查看profile设置。

[root@centos7 ~]# cobbler profile report --name=centos-7.3-x86_64-basic
Name                           : centos-7.3-x86_64-basic
TFTP Boot Files                : {}
Comment                        : 
DHCP Tag                       : default
Distribution                   : centos-7.3-x86_64
Enable gPXE?                   : 0
Enable PXE Menu?               : 1
Fetchable Files                : {}
Kernel Options                 : {}
Kernel Options (Post Install)  : {}
Kickstart                      : /var/lib/cobbler/kickstarts/centos-7.3-x86_64.cfg
Kickstart Metadata             : {}
Management Classes             : []
Management Parameters          : <<inherit>>
Name Servers                   : []
Name Servers Search Path       : []
Owners                         : ['admin']
Parent Profile                 : 
Internal proxy                 : 
Red Hat Management Key         : <<inherit>>
Red Hat Management Server      : <<inherit>>
Repos                          : []
Server Override                : <<inherit>>
Template Files                 : {}
Virt Auto Boot                 : 1
Virt Bridge                    : xenbr0
Virt CPUs                      : 1
Virt Disk Driver Type          : raw
Virt File Size(GB)             : 5
Virt Path                      : 
Virt RAM (MB)                  : 512
Virt Type                      : xenpv


最后同步一次。

[root@centos7 ~]# cobbler sync


3.4 自动安装系统

新建一台虚拟机,启动。

wKioL1mSc9PxkhWuAAAbefW8i0o240.png


wKiom1mSesTyGE1jAAAK7WcCjpM388.png

CentOS 7系统安装完成!


3.5 引导多版本系统自动化安装


根据以上同样的步骤,改用CentOS 6光盘,复制一份光盘镜像文件,使CentOS 6也可以使用cobbler自动化安装。

[root@centos7 ~]# mount /dev/sr0 /media/cdrom/
[root@centos7 ~]# ls -1F /media/cdrom/
CentOS_BuildTag
EFI/
EULA
GPL
p_w_picpaths/
isolinux/
Packages/
RELEASE-NOTES-en-US.html
repodata/
RPM-GPG-KEY-CentOS-6
RPM-GPG-KEY-CentOS-Debug-6
RPM-GPG-KEY-CentOS-Security-6
RPM-GPG-KEY-CentOS-Testing-6
TRANS.TBL

可见,在CentOS 7上挂载的光盘已经改为CentOS 6光盘镜像了。


管理distro

[root@centos7 ~]# cobbler import --name=centos-6.8-x86_64 --path=/media/cdrom
[root@centos7 ~]# cobbler distro list
   centos-6.8-x86_64
   centos-7.3-x86_64


管理profile

[root@centos7 ~]# cobbler profile remove --name=centos-6.8-x86_64
[root@centos7 ~]# cobbler profile add --name=centos-6.8-x86_64-basic --distro=centos-6.8-x86_64 --kickstart=/var/lib/cobbler/kickstarts/centos-6.8-x86_64.cfg
[root@centos7 ~]# cobbler profile list
   centos-6.8-x86_64-basic
   centos-7.3-x86_64-basic


自定义kickstart文件

kickstart文件必须存放在/var/lib/cobbler/kickstarts目录下。

使用此前PXE实验中用到的kickstart文件,修改其中的url,如下。

url --url="http://192.168.10.150/cobbler/ks_mirror/centos-6.8-x86_64/"


ks文件如下。

[root@centos7 kickstarts]# vim centos-6.8-x86_64.cfg 

#platform=x86, AMD64, or Intel EM64T
#version=DEVEL
# Firewall configuration
firewall --disabled
# Install OS instead of upgrade
install
# Use network installation
#platform=x86, AMD64, or Intel EM64T
#version=DEVEL
# Firewall configuration
firewall --disabled
# Install OS instead of upgrade
install
# Use network installation
url --url="http://192.168.10.150/cobbler/ks_mirror/centos-6.8-x86_64/"
# Root password
rootpw --iscrypted $1$wakiRJZe$7pfhY4KCgf9B9ZEp/WPQN0
# System authorization information
auth  --useshadow  --passalgo=sha512
# Use text mode install
text
# System keyboard
keyboard us
# System language
lang en_US
# SELinux configuration
selinux --disabled
# Do not configure the X Window System
skipx
# Installation logging level
logging --level=info
# Reboot after installation
reboot
# System timezone
timezone  Asia/Shanghai
# Network information
network  --bootproto=dhcp --device=eth0 --onboot=on
# System bootloader configuration
bootloader --append="crashkernel=auto rhgb quiet vga=788" --location=mbr --driveorder="sda"
# Clear the Master Boot Record
zerombr
# Partition clearing information
clearpart --all --initlabel
# Disk partitioning information
part /boot --fstype="ext4" --size=512
part / --fstype="ext4" --size=10240
part swap --fstype="swap" --size=2048

%post
echo "Hello~My Tab!"

rm -rf /etc/yum.repo.d/*
cat > /etc/yum.repo.d/local.repo <<EOF
[local]
name=this is a local repo.
baseurl=mirrors.163.com/centos/6.8/os/x86_64
gpgcheck=0
EOF

cat > /etc/yum.repo.d/epel <<EOF
[local]
name=this is a epel repo.
baseurl=https://dl.fedoraproject.org/pub/epel/6/x86_64/
gpgcheck=0
EOF

mkdir /media/cdrom
echo "/dev/sr0  /media/cdrom  iso9660  defaults   0 0"  >> /etc/fstab
%end

%packages
@base
@console-internet

%end


查看profile设置。

[root@centos7 ~]# cobbler profile report --name=centos-6.8-x86_64-basic
Name                           : centos-6.8-x86_64-basic
TFTP Boot Files                : {}
Comment                        : 
DHCP Tag                       : default
Distribution                   : centos-6.8-x86_64
Enable gPXE?                   : 0
Enable PXE Menu?               : 1
Fetchable Files                : {}
Kernel Options                 : {}
Kernel Options (Post Install)  : {}
Kickstart                      : /var/lib/cobbler/kickstarts/centos-6.8-x86_64.cfg
Kickstart Metadata             : {}
Management Classes             : []
Management Parameters          : <<inherit>>
Name Servers                   : []
Name Servers Search Path       : []
Owners                         : ['admin']
Parent Profile                 : 
Internal proxy                 : 
Red Hat Management Key         : <<inherit>>
Red Hat Management Server      : <<inherit>>
Repos                          : []
Server Override                : <<inherit>>
Template Files                 : {}
Virt Auto Boot                 : 1
Virt Bridge                    : xenbr0
Virt CPUs                      : 1
Virt Disk Driver Type          : raw
Virt File Size(GB)             : 5
Virt Path                      : 
Virt RAM (MB)                  : 512
Virt Type                      : xenpv


最后同步一次。

[root@centos7 ~]# cobbler sync


自动安装系统

新建一台虚拟机,启动。

wKiom1mXgR6SYJzyAAAh6wbhZ74795.png


wKiom1mXhNyCG0jGAAALneXaRMA085.png

CentOS 7系统安装完成!

同样的原理可以引导安装其他发行版的Linux系统,此处不做演示。



四、使用cobbler_web


4.1 配置cobbler_web的认证功能

cobbler_web支持多种认证方式,如authn_configfile、authn_ldap或authn_pam等,默认为authn_denyall,即拒绝所有用户登录。下面说明两种能认证用户登录cobbler_web的方式。


4.1.1 使用authn_pam模块认证cobbler_web用户

首先修改modules中[authentication]段的module参数的值为authn_pam。

[root@centos7 ~]# vim /etc/cobbler/modules.conf
[authentication]
module = authn_pam
...(其他省略)...


接着添加系统用户,用户名和密码按需设定即可,例如下面的命令所示。

# useradd cblradmin
# echo 'cblrpass' | passwd --stdin cblradmin


而后将cblradmin用户添加至cobbler_web的admin组中。修改/etc/cobbler/users.conf文件,将cblradmin用户名添加为admin参数的值即可,如下所示。

[root@centos7 ~]# vim /etc/cobbler/users.conf 
[admins]
admin = ""cblradmin


最后重启cobblerd服务,通过http://YOUR_COBBLERD_IP/cobbler_web访问即可。

[root@centos7 ~]# systemctl restart cobblerd.service
[root@centos7 ~]# systemctl restart httpd
[root@centos7 ~]# ss -tnl | grep :80
LISTEN     0      128          *:80                       *:*


4.1.2 使用authn_configfile模块认证cobbler_web用户

首先修改modules.conf中[authentication]段的module参数的值为authn_configfile。

[root@centos7 ~]# vim /etc/cobbler/modules.conf 
[authentication]
module = authn_configfile
...(其他省略)...


接着创建其认证文件/etc/cobbler/users.digest,并添加所需的用户即可。需要注意的是,添加第一个用户时,需要为htdigest命令使用“-c”选项,后续添加其他用户时不能再使用;另外,cobbler_web的realm只能为Cobbler。如下所示。

[root@centos7 ~]# htdigest -c /etc/cobbler/users.digest Cobbler cblradmin  
Adding password for cblradmin in realm Cobbler.
New password: 
Re-type new password:
用户账号:cblradmin
密码:12345
Realm:Cobbler


最后重启cobblerd服务,通过http://YOUR_COBBLERD_IP/cobbler_web访问即可。


这里需要注意的是,以上无论使用哪种认证方式,使用yum安装cobbler-web程序包时,在/etc/httpd/conf.d/目录下会自动产生一个cobbler_web.conf文件。在该httpd配置文件中,包含了httpd-2.2和httpd-2.4这两种配置,因为本次实验是在CentOS 7上直接使用yum安装httpd,所以httpd的版本是2.4,故需要注释掉该文件中httpd-2.2配置部分,保留http-2.4配置部分。如下。

[root@centos7 ~]# vim /etc/httpd/conf.d/cobbler_web.conf 


#<Directory "/usr/share/cobbler/web/">
#        <IfModule mod_ssl.c>
#            SSLRequireSSL
#        </IfModule>
#        <IfModule mod_nss.c>
#            N×××equireSSL
#        </IfModule>
#        SetEnv VIRTUALENV 
#        Options Indexes MultiViews
#        AllowOverride None
#        Order allow,deny
#        Allow from all
#</Directory>
#
#<Directory "/var/www/cobbler_webui_content/">
# This configuration file enables the cobbler web
# interface (django version)

#<Directory "/usr/share/cobbler/web/">
#        <IfModule mod_ssl.c>
#            SSLRequireSSL
#        </IfModule>
#        <IfModule mod_nss.c>
#            N×××equireSSL
#        </IfModule>
#        SetEnv VIRTUALENV 
#        Options Indexes MultiViews
#        AllowOverride None
#        Order allow,deny
#        Allow from all
#</Directory>
#
#<Directory "/var/www/cobbler_webui_content/">
#        <IfModule mod_ssl.c>
#            SSLRequireSSL
#        </IfModule>
#        <IfModule mod_nss.c>
#            N×××equireSSL
#        </IfModule>
#        Options +Indexes +FollowSymLinks
#        AllowOverride None
#        Order allow,deny
#        Allow from all
#</Directory>

# Use separate process group for wsgi
WSGISocketPrefix /var/run/wsgi
WSGIScriptAlias /cobbler_web /usr/share/cobbler/web/cobbler.wsgi
WSGIDaemonProcess cobbler_web display-name=%{GROUP}
WSGIProcessGroup cobbler_web
WSGIPassAuthorization On

<IfVersion >= 2.4>
    <Location /cobbler_web>
        Require all granted
    </Location>
    <Location /cobbler_webui_content>
    Require all granted
    </Location>
</IfVersion>


重启服务。

[root@centos7 ~]# systemctl restart cobblerd.service^C
[root@centos7 ~]# systemctl restart httpd.service


验证

打开浏览器,输入url为http://192.168.10.150/cobbler_web,如下。

wKiom1mX93CAhWNnAAErjdTfHbE319.png


wKiom1mX95SxgTsDAAEKas_7-1I118.png


接下来演示使用cobbler_web重复一遍刚才的操作,这次仍然以制作CentOS 6.8网络引导为例。

首先删除刚才创建的distro。

[root@centos7 ~]# cobbler profile remove --name=centos-6.8-x86_64-basic    # 需要先删除依赖该distro的profile
[root@centos7 ~]# cobbler distro remove --name=centos-6.8-x86_64


管理distro

wKiom1mX-sPSbVBXAADQ0BJxRdQ367.png

备注:Prefix即name。


wKiom1mX_GGBA08pAADh5i59zu4071.png


自定义kickstart文件

wKiom1mX_dGjtRLHAAE8qNx7AOU026.png


wKioL1mX_6eBuhYwAAEya8ZqUBk514.png


管理profile

wKiom1mX_GChUVrfAAD413cN2jI512.png

删除自动生成的profile。


wKioL1mYAJ-SvvupAADn5xKTJEU026.png


wKioL1mYAJ-zRzeyAAEhBVQs1c0033.png


wKiom1mYAKTTiduNAADrKU_yNtc213.png


同步cobbler配置到各个服务配置中

wKioL1mYARjQu3zxAADTFOJ4JSU169.png


创建虚拟机,启动后开始自动安装系统

wKioL1mYAaPiym_RAAAhupYni4A046.png


wKiom1mYAafS-6H0AAALneXaRMA623.png

安装成功!