Ubuntu 16.04安装Cobbler 2.9:
注: 1、Cobbler 2.9新增uefi支持 2、Cobbler 2.9依赖syslinux 6.x版本支持
apt-get install apache2、libapache2-mod-wsgi、python-cheetah、python-netaddr、python-simplejson、python-urlgrabber、python-yaml、python-django
apt-get install tftpd-hpa
apt-get install nasm uuid-dev
wget https://www.kernel.org/pub/linux/utils/boot/syslinux/syslinux-6.03.tar.gz
tar zxfv syslinux-6.03.tar.gz
cd syslinux-6.03
make
make install
git clone https://github.com/cobbler/cobbler.git
cd cobbler
make
make install
ln -s /etc/apache2/conf-available/cobbler.conf /etc/apache2/conf-enabled/
/etc/init.d/apache2 restart
/etc/init.d/cobblerd restart
cobbler check (根据提示处理)
cobbler sync
ks或seed文件存放路径:/var/lib/cobbler/templates/
对应的cobbler profile add或edit时参数为--template=/var/lib/cobbler/templates/xxx.ks
iso内容存放路径:/srv/www/cobbler/distro_mirror/
原文链接:https://www.f2er.com/ubuntu/350191.html