天天看點

cobbler安裝centos 7系統

環境:CentOS 6.5

前提:關閉selinux,iptables

首先需要挂載CD光牒:CentOS-7-x86_64-DVD-1503-01

[root@linux-node1 ~]# mount /dev/cdrom /mnt

[root@linux-node1 ~]# yum install cobbler cobbler-web dhcp tftp-server pykickstart  httpd epel* -y

[root@linux-node1 ~]# /etc/init.d/httpd restart

[root@linux-node1 ~]# /etc/init.d/cobblerd start

[root@linux-node1 ~]# cobbler check  

The following are potential configuration items that you may want to fix:

..............

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

[root@linux-node1 ~]# vim /etc/cobbler/settings

server: 10.0.0.7

next_server: 10.0.0.7

manage_dhcp: 1

[root@linux-node1 ~]# cobbler get-loaders

[root@linux-node1 ~]# vim /etc/xinetd.d/rsync

change 'disable' to 'no'

[root@linux-node1 ~]# /etc/init.d/xinetd restart

[root@linux-node1 ~]# openssl passwd -1 -salt 'oldboy' 'oldboy'

default_password_crypted: "$1$oldboy$fXF8f078vI9J/q9XyXA8e/"

[root@linux-node1 ~]# yum install -y debmirror yum-utils fence-agents

[root@linux-node1 ~]# /etc/init.d/cobblerd restart

[root@linux-node1 ~]# cobbler check

[root@linux-node1 ~]# vim /etc/cobbler/dhcp.template

subnet 10.0.0.0 netmask 255.255.255.0 {

     option routers             10.0.0.2;

     option domain-name-servers 10.0.0.2;

     option subnet-mask         255.255.255.0;

     range dynamic-bootp        10.0.0.100 10.0.0.200;

[root@linux-node1 ~]# cobbler sync

[root@linux-node1 ~]# cobbler import --path=/mnt/ --name=CentOS-7.1-x86_64 --arch=x86_64 /var/www/cobbler/ks_mirror/

[root@linux-node1 ~]# cd /var/lib/cobbler/kickstarts/

上傳ks檔案至此目錄:

[root@linux-node2 kickstarts]# cat Cobbler-CentOS-7.1-x86_64.cfg 

#Kickstart Configurator by Jason Zhao

#platform=x86, AMD64, or Intel EM64T

#System  language

lang en_US

#System keyboard

keyboard us

#Sytem timezone

timezone Asia/Shanghai

#Root password

rootpw --iscrypted $default_password_crypted

#rootpw --iscrypted $1$ops-node$7hqdpgEmIE7Z0RbtQkxW20

#Use text mode install

text

#Install OS instead of upgrade

install

#Use NFS installation Media

url --url=$tree

#url --url=http://192.168.56.11/CentOS-7.1-x86_64

#System bootloader configuration

bootloader --location=mbr

#Clear the Master Boot Record

zerombr

#Partition clearing information

clearpart --all --initlabel 

#Disk partitioning information

part /boot --fstype xfs --size 1024 --ondisk sda

part swap --size 16384 --ondisk sda

part / --fstype xfs --size 1 --grow --ondisk sda

#System authorization infomation

auth  --useshadow  --enablemd5 

#Network information

$SNIPPET('network_config')

#network --bootproto=dhcp --device=eth0 --onboot=on

# Reboot after installation

reboot

#Firewall configuration

firewall --disabled 

#SELinux configuration

selinux --disabled

#Do not configure XWindows

skipx

%pre

$SNIPPET('log_ks_pre')

$SNIPPET('kickstart_start')

$SNIPPET('pre_install_network_config')

# Enable installation monitoring

$SNIPPET('pre_anamon')

%end

#Package install information

%packages

@ base

@ core

sysstat

iptraf

ntp

lrzsz

ncurses-devel

openssl-devel

zlib-devel

OpenIPMI-tools

mysql

nmap

screen

%post

systemctl disable postfix.service

[root@linux-node1 kickstarts]# mv Cobbler-CentOS-7.1-x86_64.cfg CentOS-7.1-x86_64.cfg

[root@linux-node1 kickstarts]# cobbler profile edit --name=CentOS-7.1-x86_64 --kickstart=/var/lib/cobbler/kickstarts/CentOS-7.1-x86_64.cfg

[root@linux-node1 kickstarts]# cobbler profile edit --name=CentOS-7.1-x86_64 --kopts='net.ifnames=0 biosdevname=0'

然後打開一台新的虛拟機,讓它自動擷取即可

root             oldboy

     本文轉自陳繼松 51CTO部落格,原文連結:http://blog.51cto.com/chenjisong/1718128,如需轉載請自行聯系原作者

繼續閱讀