linux安裝配置kickstart

abin1703發表於2017-06-19
1、安裝配置kickstart


要使用kickstrt安裝平臺,包括的完整架構為:Kickstart + DHCP+ NFS+TFTP+PXE,從架構可以看出
大致需要安裝的服務,例如dbcp、tftp、nfs、kickstart/pxe等


掛在映象


mount /dev/cdrom /mnt
df -h




1)DHCP、Tftp安裝


yum install -y dhcp* tftp* syslinux


首先配置tftp服務:


vi /etc/xinetd.d/tftp


disable                 = no


只需要把disable=yes 改成disbale=no即可




2)TFTP +PXE配置


要實現遠端安裝系統,首先需要在TFTpboot目錄指定相關PXE核心模組以及相關引數,
配置步驟如下:


#如果系統是5.X,預設tftpboot目錄已經自動建立到/根目錄下
#如果系統是6.X,預設tftpboot目錄在/var/lib/下,所以linux 6.x需要做軟連結/根目錄下。
檢視/根下是否有/tftpboot目錄,如果沒有需要做軟連結
ln -s /var/lib/tftpboot/ /
cd /tftpboot/
find / -name pxelinux.0
cp /usr/share/syslinux/pxelinux.0 ./
cp /mnt/images/pxeboot/{initrd.img,vmlinuz} ./
將所有內容複製核心到/tftpboot目錄下


mkdir -p /tftpboot/pxelinux.cfg 
cd /tftpboot/pxelinux.cfg
cp /mnt/isolinux/isolinux.cfg default
chmod 777 /tftpboot/pxelinux.cfg/default
vi /tftpboot/pxelinux.cfg/default
新增如下:
label Rehel6.5
kernel vmlinuz
append ks=nfs:192.168.56.77:/centosinstall/ks.cfg ksdevice=eth0 initrd=initrd.img




安裝nfs服務


yum install -y nfs*


用NFs或者httpd把映象檔案共享出來


mkdir -p /centosinstall
nohup cp -rf /mnt/* /centosinstall &
echo "/centosinstall  *(rw,sync)" >>/etc/exports




cd /centosinstall
vi ks.cfg
[root@localhost ~]# cat ks.cfg 
#platform=x86, AMD64, or Intel EM64T
#version=DEVEL
key --skip
# Firewall configuration
firewall --disabled
# Install OS instead of upgrade
install
# Use NFS installation media
nfs --server=192.168.56.77 --dir=/centosinstall
# Root password
rootpw --iscrypted $1$9g6qXfWW$b3ofuFBbrusMKae5R5d6Z.
# System authorization information
auth  --useshadow  --passalgo=sha512
# Use text mode install
text
firstboot --disable
# System keyboard
keyboard us
# System language
lang en_US
# SELinux configuration
selinux --disabled
# 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 --location=mbr
# Clear the Master Boot Record
zerombr
# Partition clearing information
clearpart --all  
# Disk partitioning information
part swap --fstype="swap" --size=4096
part /boot --fstype="ext4" --size=200
part / --fstype="ext4" --grow --size=1
%packages
@admin-tools
@base
@core
@development-libs
@development-tools
@x11
%end




chmod 777 ks.cfg




或者使用yum install system-config-kickstart.noarch   終端中執行system-config-kickstart命令 影像介面生成ks.cfg檔案






啟動nfs、tftp服務
service nfs restart
service xinetd restart




配置dhcp服務


yum install -y dbcp*


vi /etc/dhcp/dhcpd.conf


ddns-update-style interim;
ignore client-updates;
subnet 192.168.56.0 netmask 255.255.255.0 {
option routers 192.168.56.1;
option subnet-mask 255.255.255.0;
range dynamic-bootp  192.168.56.88 192.168.56.200;
next-server 192.168.56.77;
filename "pxelinux.0";
allow booting;
allow bootp;
}




service dhcpd restart








建立客戶端client
輸入標籤
Rehel6.5






















來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30345407/viewspace-2140977/,如需轉載,請註明出處,否則將追究法律責任。

相關文章